diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-11-20 16:02:39 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2016-11-20 16:02:39 +0100 |
commit | 5aea0952e7cb445e614652e3cd9aba71a836eed0 (patch) | |
tree | 531d01b0f6aa2ec860c31f7f71b77200ac21202a /railties/lib/rails | |
parent | e6c808e354cdc2a8d9274caa6668fdfc145a255d (diff) | |
download | rails-5aea0952e7cb445e614652e3cd9aba71a836eed0.tar.gz rails-5aea0952e7cb445e614652e3cd9aba71a836eed0.tar.bz2 rails-5aea0952e7cb445e614652e3cd9aba71a836eed0.zip |
Pass `rails runner` args onto file again.
When making the new command insfrastructure I had missed that
`bin/rails runner some_file.rb some args` would pass the extra
args onto the file in `ARGV`.
Now fixed by allowing the command to take extra args again, and
make sure to remove the file name from `ARGV`.
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/commands/runner/runner_command.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/runner/runner_command.rb b/railties/lib/rails/commands/runner/runner_command.rb index 27666c76b7..4989a7837d 100644 --- a/railties/lib/rails/commands/runner/runner_command.rb +++ b/railties/lib/rails/commands/runner/runner_command.rb @@ -14,7 +14,7 @@ module Rails "#{super} [<'Some.ruby(code)'> | <filename.rb>]" end - def perform(code_or_file = nil) + def perform(code_or_file = nil, *file_argv) unless code_or_file help exit 1 @@ -27,6 +27,7 @@ module Rails if File.exist?(code_or_file) $0 = code_or_file + ARGV.replace(file_argv) Kernel.load code_or_file else begin |