README.md in capybara-firebug-0.0.10 vs README.md in capybara-firebug-1.0.0

- old
+ new

@@ -8,23 +8,25 @@ Firebug will be set up so that all features are fully enabled on every page. You'll want to be able to pause the scenario at some point to inspect things in Firebug. A step definition for `Then stop and let me debug` is provided -for this purpose. When executed, it breaks in the Ruby debugger. +for this purpose. When executed, it breaks in the Ruby debugger. (If you are +using bundler, you will also need to specify the correct debugging gem in your +Gemfile: `gem 'ruby-debug'` for 1.8, `gem 'ruby-debug19'` for 1.9.) ## Firebug Versions -By default, this gem uses Firebug 1.7.3, which is compatible with Firefox 3.6, -4.0, and 5.0. +By default, this gem uses Firebug 1.8.4, which is compatible with Firefox 5, +6, 7, 8, and 9. -If you want to use Firebug 1.8.3 (compatible with Firefox 5, 6, 7, and 8), you +If you want to use Firebug 1.7.3 (compatible with Firefox 3.6, 4.0, and 5.0), you need to explicitly specify the firebug_version setting in your `capybara.rb` support file: # located in features/support/capybara.rb or similar require 'capybara/firebug' - Selenium::WebDriver::Firefox::Profile.firebug_version = '1.8.3' + Selenium::WebDriver::Firefox::Profile.firebug_version = '1.7.3' ## Customizing the Profile If you wish to further customize the Firefox profile used by selenium, you can use the `#enable_firebug` method to add the Firebug extension to it: