Skip to content

Commit

Permalink
Rails 3.2 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
nixme committed Jan 20, 2012
1 parent 83ad2d7 commit e011c8f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 0.1.1 (2012-01-20)

* Rails 3.2 compatibility

## 0.1.0 (2012-01-04)

* For performance, enable [pry-nav][pry-nav] only on MRI 1.9.3 by default. To
Expand Down
3 changes: 2 additions & 1 deletion lib/jazz_hands/railtie.rb
Expand Up @@ -13,7 +13,8 @@ module JazzHands
class Railtie < Rails::Railtie
initializer 'jazz_hands.initialize' do |app|
silence_warnings do
::IRB = Pry # Replace IRB with Pry completely
::IRB = Pry # Replace IRB with Pry completely
IRB::ExtendCommandBundle = Pry # Rails 3.2 injects commands in there

# We're managing the loading of plugins, especially pry-nav which
# shouldn't be loaded on 1.9.2. So don't let pry autoload them.
Expand Down
2 changes: 1 addition & 1 deletion lib/jazz_hands/version.rb
@@ -1,3 +1,3 @@
module JazzHands
VERSION = '0.1.0'
VERSION = '0.1.1'
end

0 comments on commit e011c8f

Please sign in to comment.