Started again with Rails 4
[feedcatcher.git] / vendor / rails / railties / lib / rails_generator / generators / applications / app / scm / git.rb
diff --git a/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/git.rb b/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/git.rb
deleted file mode 100644 (file)
index 445de6a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-module Rails
-  class Git < Scm
-    def self.clone(repos, branch=nil)
-      `git clone #{repos}`
-
-      if branch
-        `cd #{repos.split('/').last}/`
-        `git checkout #{branch}`
-      end
-    end
-
-    def self.run(command)
-      `git #{command}`
-    end
-  end
-end
\ No newline at end of file