diff --git a/CHANGELOG.md b/CHANGELOG.md index a125311..0d6514a 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/lib/jazz_hands/railtie.rb b/lib/jazz_hands/railtie.rb index 8d45879..c0dba0b 100644 --- a/lib/jazz_hands/railtie.rb +++ b/lib/jazz_hands/railtie.rb @@ -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. diff --git a/lib/jazz_hands/version.rb b/lib/jazz_hands/version.rb index c5419f2..3a6f842 100644 --- a/lib/jazz_hands/version.rb +++ b/lib/jazz_hands/version.rb @@ -1,3 +1,3 @@ module JazzHands - VERSION = '0.1.0' + VERSION = '0.1.1' end