Skip to content

Commit

Permalink
update to use newer versions of required gems
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuity committed Oct 28, 2010
1 parent c593337 commit 11851d1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'http://rubygems.org'

gem 'rails', '3.0.0'
gem 'rails', '3.0.1'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ GEM
activesupport (~> 3.0.0)
bcrypt-ruby (2.1.2)
bson (1.1)
bson_ext (1.1)
bson_ext (1.1.1)
builder (2.1.2)
devise (1.1.3)
bcrypt-ruby (~> 2.1.2)
Expand Down Expand Up @@ -84,7 +84,7 @@ PLATFORMS
ruby

DEPENDENCIES
bson_ext (= 1.1)
bson_ext (= 1.1.1)
devise (= 1.1.3)
mongoid (= 2.0.0.beta.19)
rails (= 3.0.0)
2 changes: 1 addition & 1 deletion README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ The application uses the following gems:

* rails (version 3.0.0)
* mongoid (version 2.0.0.beta.19)
* bson_ext (version 1.1)
* bson_ext (version 1.1.1)
* devise (version 1.1.3)

I recommend checking for newer versions of these gems before proceeding:
Expand Down
12 changes: 6 additions & 6 deletions TUTORIAL.textile
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ h3. About Required Gems

The application uses the following gems:

* rails (version 3.0.0)
* rails (version 3.0.1)
* mongoid (version 2.0.0.beta.19)
* bson_ext (version 1.1)
* bson_ext (version 1.1.1)
* devise (version 1.1.3)

If you wish to deploy to Heroku, you can include the heroku gem.
Expand All @@ -141,13 +141,13 @@ source 'http://rubygems.org'

gem 'rails', '3.0.0'
gem 'mongoid', '2.0.0.beta.19'
gem 'bson_ext', '1.1'
gem 'bson_ext', '1.1.1'
gem 'devise', '1.1.3'
# uncomment the next line if you wish to deploy to Heroku
# gem 'heroku', '1.10.6'
# gem 'heroku', '1.11.0'
# uncomment the following lines if you wish to use Haml
# gem 'haml', '3.0.18'
# gem 'haml-rails', '0.2', :group => :development
# gem 'haml', '3.0.22'
# gem 'haml-rails', '0.3.4', :group => :development
# the folowing gems are used to generate Devise views for Haml
# gem 'hpricot', '0.8.2', :group => :development
# gem 'ruby_parser', '2.0.5', :group => :development
Expand Down
8 changes: 4 additions & 4 deletions template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#----------------------------------------------------------------------------
if heroku_flag
puts "adding Heroku gem to the Gemfile..."
gem 'heroku', '1.10.6', :group => :development
gem 'heroku', '1.11.0', :group => :development
end

#----------------------------------------------------------------------------
Expand All @@ -75,8 +75,8 @@
if haml_flag
puts "setting up Gemfile for Haml..."
append_file 'Gemfile', "\n# Bundle gems needed for Haml\n"
gem 'haml', '3.0.18'
gem 'haml-rails', '0.2', :group => :development
gem 'haml', '3.0.22'
gem 'haml-rails', '0.3.4', :group => :development
# the following gems are used to generate Devise views for Haml
gem 'hpricot', '0.8.2', :group => :development
gem 'ruby_parser', '2.0.5', :group => :development
Expand All @@ -86,7 +86,7 @@
# jQuery Option
#----------------------------------------------------------------------------
if jquery_flag
gem 'jquery-rails', '0.1.3'
gem 'jquery-rails', '0.2.4'
end

#----------------------------------------------------------------------------
Expand Down

0 comments on commit 11851d1

Please sign in to comment.