Skip to content

Commit

Permalink
bump version to 1.0.5, see CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuity committed May 27, 2011
1 parent 625b00e commit f03847c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.textile
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
h1. CHANGELOG

h2. 1.0.5 May 27, 2011

* adjust Javascript and stylesheet link tags for Rails 3.1
* adjust CSS stylesheets location for Rails 3.1
* use HTML 5 for Haml
* fix indentation in devise_navigation recipe for Haml
* update gems for Rails 3.0.8 and 3.1: cucumber-rails 0.5.1, capybara 1.0.0.beta1, rspec 2.6.1
* remove "fix_rake" recipe, was needed for Rails 3.0.7, not needed for Rails 3.0.8

h2. 1.0.4 May 24, 2011

* for Rails 3.0, use only gem versions that we know work
Expand Down
6 changes: 3 additions & 3 deletions recipes/cucumber.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
if config['cucumber']
if recipes.include? 'rails 3.0'
# for Rails 3.0, use only gem versions we know that work
gem 'cucumber-rails', '0.4.1', :group => :test
gem 'capybara', '0.4.1.2', :group => :test
gem 'cucumber-rails', '0.5.1', :group => :test
gem 'capybara', '1.0.0.beta1', :group => :test
gem 'database_cleaner', '0.6.7', :group => :test
gem 'launchy', '0.4.0', :group => :test
else
# for Rails 3.1+, use optimistic versioning for gems
gem 'cucumber-rails', '>= 0.5.0', :group => :test
gem 'cucumber-rails', '>= 0.5.1', :group => :test
gem 'capybara', '>= 1.0.0.beta1', :group => :test
gem 'database_cleaner', '>= 0.6.7', :group => :test
gem 'launchy', '>= 0.4.0', :group => :test
Expand Down
4 changes: 2 additions & 2 deletions recipes/rspec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# for Rails 3.0, use only gem versions we know that work
say_wizard "REMINDER: When creating a Rails app using RSpec..."
say_wizard "you should add the '-T' flag to 'rails new'"
gem 'rspec-rails', '2.5.0', :group => [:development, :test]
gem 'rspec-rails', '2.6.1', :group => [:development, :test]
if recipes.include? 'mongoid'
# use the database_cleaner gem to reset the test database
gem 'database_cleaner', '0.6.7', :group => :test
Expand All @@ -19,7 +19,7 @@
end
else
# for Rails 3.1+, use optimistic versioning for gems
gem 'rspec-rails', '~> 2.6.1.beta', :group => [:development, :test]
gem 'rspec-rails', '>= 2.6.1', :group => [:development, :test]
if recipes.include? 'mongoid'
# use the database_cleaner gem to reset the test database
gem 'database_cleaner', '>= 0.6.7', :group => :test
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RailsWizard
VERSION = "1.0.4"
VERSION = "1.0.5"
end

0 comments on commit f03847c

Please sign in to comment.