1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Use --rc= instead of --rc

This commit is contained in:
robertomiranda 2013-02-04 12:57:12 -05:00
parent 65113fd2c8
commit 51030364ec

View file

@ -10,8 +10,12 @@ if ARGV.first != "new"
else else
ARGV.shift ARGV.shift
unless ARGV.delete("--no-rc") unless ARGV.delete("--no-rc")
customrc = ARGV.index('--rc') customrc = ARGV.index{ |x| x.include?("--rc=") }
railsrc = customrc ? ARGV.slice!(customrc, 2).last : File.join(File.expand_path("~"), '.railsrc') railsrc = if customrc
File.expand_path(ARGV.delete_at(customrc).gsub(/--rc=/, ""))
else
File.join(File.expand_path("~"), '.railsrc')
end
if File.exist?(railsrc) if File.exist?(railsrc)
extra_args_string = File.read(railsrc) extra_args_string = File.read(railsrc)
extra_args = extra_args_string.split(/\n+/).map {|l| l.split}.flatten extra_args = extra_args_string.split(/\n+/).map {|l| l.split}.flatten