22b5966d25a8306898433c2f75b5f6bbe8dee474
[feedcatcher.git] / vendor / rails / railties / lib / rails_generator / generators / applications / app / scm / svn.rb
1 module Rails
2 class Svn < Scm
3 def self.checkout(repos, branch = nil)
4 `svn checkout #{repos}/#{branch || "trunk"}`
5 end
6 end
7 end