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

Refactor --rc option

This commit is contained in:
Guillermo Iguaran 2013-02-02 00:36:43 -05:00
parent 9cb386d9d6
commit 784ed154c3

View file

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