aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/commands/runner.rb
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-06-28 20:53:00 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-06-28 20:53:00 +0000
commit81a6a60dc6dff2ad8c2a45bf17fc40e760224e30 (patch)
tree691d04124ae4a872a992eff39b1c2d86891fbe84 /railties/lib/commands/runner.rb
parentc02d1f7d9b73f708d8f656044b096454344ccb78 (diff)
downloadrails-81a6a60dc6dff2ad8c2a45bf17fc40e760224e30.tar.gz
rails-81a6a60dc6dff2ad8c2a45bf17fc40e760224e30.tar.bz2
rails-81a6a60dc6dff2ad8c2a45bf17fc40e760224e30.zip
Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4502 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/commands/runner.rb')
-rw-r--r--railties/lib/commands/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/commands/runner.rb b/railties/lib/commands/runner.rb
index f4d70f1541..47186d52e4 100644
--- a/railties/lib/commands/runner.rb
+++ b/railties/lib/commands/runner.rb
@@ -10,7 +10,7 @@ ARGV.options do |opts|
opts.on("-e", "--environment=name", String,
"Specifies the environment for the runner to operate under (test/development/production).",
- "Default: development") { |options[:environment]| }
+ "Default: development") { |v| options[:environment] = v }
opts.separator ""