README.md in combustion-0.9.0 vs README.md in combustion-0.9.1
- old
+ new
@@ -8,13 +8,13 @@
Get the gem into either your gemspec or your Gemfile, depending on how you manage your engine's dependencies:
```ruby
# gemspec
-gem.add_development_dependency 'combustion', '~> 0.9.0'
+gem.add_development_dependency 'combustion', '~> 0.9.1'
# Gemfile
-gem 'combustion', '~> 0.9.0', :group => :test
+gem 'combustion', '~> 0.9.1'
```
In your `spec_helper.rb`, get Combustion to set itself up - which has to happen before you introduce `rspec/rails` and - if being used - `capybara/rails`. Here's an example within context:
```ruby