Merged updates from trunk into stable branch
[feedcatcher.git] / vendor / rails / railties / lib / rails_generator / generators / applications / app / scm / scm.rb
1 module Rails
2 class Scm
3 private
4 def self.hash_to_parameters(hash)
5 hash.collect { |key, value| "--#{key} #{(value.kind_of?(String) ? value : "")}"}.join(" ")
6 end
7 end
8 end