diff options
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/indifferent_access.rb | 2 | ||||
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/lib/commands/console.rb | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb index d60b605942..472e3ab7d1 100644 --- a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +++ b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb @@ -76,4 +76,4 @@ module ActiveSupport #:nodoc: end end end -end
\ No newline at end of file +end diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 875bc527a6..e77b59d170 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Use --simple-prompt instead of --prompt-mode simple for console compatibility with Windows/Ruby 1.8.2 #4532 [starr@starrnhorne.com] + * Make Rails::VERSION implicitly loadable #4491. [Nicholas Seckar] * Fixed rake rails:freeze:gems #4518 [benji@silverinsanity.com] diff --git a/railties/lib/commands/console.rb b/railties/lib/commands/console.rb index 3cc9fcbdb1..ed0cc10de7 100644 --- a/railties/lib/commands/console.rb +++ b/railties/lib/commands/console.rb @@ -22,4 +22,4 @@ if options[:sandbox] else puts "Loading #{ENV['RAILS_ENV']} environment." end -exec "#{options[:irb]} #{libs} --prompt-mode simple" +exec "#{options[:irb]} #{libs} --simple-prompt" |