Skip to content

Commit

Permalink
update to use mongoid 2.0.0.beta.15 and devise 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuity committed Jul 31, 2010
1 parent 0a9b4b7 commit 599ef41
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,8 +1,8 @@
source 'http://rubygems.org'

gem 'rails', '3.0.0.rc'
gem 'mongoid', '2.0.0.beta11'
gem 'mongoid', '2.0.0.beta.15'
gem 'bson_ext', '1.0.4'
gem 'devise', '1.1.0'
gem 'devise', '1.1.1'
# uncomment if you wish to deploy to Heroku
# gem 'heroku', '1.9.12'
6 changes: 3 additions & 3 deletions README.textile
Expand Up @@ -24,7 +24,7 @@ No testing (RSpec or otherwise) is implemented. Devise and Mongoid have their ow

h2. Dependencies

This app is based on Rails 3, Mongoid 2 beta 11, and Devise 1.1.0.
This app is based on Rails 3, Mongoid 2 beta 11, and Devise 1.1.1.

Before running this app, you need to install

Expand Down Expand Up @@ -90,9 +90,9 @@ h3. About Required Gems
The application uses the following gems:

* rails (version 3.0.0.rc)
* mongoid (version 2.0.0.beta11)
* mongoid (version 2.0.0.beta.15)
* bson_ext (version 1.0.4)
* devise (version 1.1.0)
* devise (version 1.1.1)

If you wish to deploy to Heroku, you can include the heroku gem (version 1.9.10).

Expand Down
10 changes: 5 additions & 5 deletions TUTORIAL.textile
Expand Up @@ -18,7 +18,7 @@ If you wish to "change the recipe" to generate the app with your own customized

h2. Assumptions

This tutorial is based on Rails 3, Mongoid 2 beta 11, and Devise 1.1.0.
This tutorial is based on Rails 3, Mongoid 2 beta 11, and Devise 1.1.1.

Before beginning this tutorial, you need to install

Expand Down Expand Up @@ -112,9 +112,9 @@ h3. About Required Gems
The application uses the following gems:

* rails (version 3.0.0.rc)
* mongoid (version 2.0.0.beta11)
* mongoid (version 2.0.0.beta.15)
* bson_ext (version 1.0.4)
* devise (version 1.1.0)
* devise (version 1.1.1)

If you wish to deploy to Heroku, you can include the heroku gem (version 1.9.12).

Expand All @@ -126,9 +126,9 @@ Edit the *Gemfile* file to look like this:
source 'http://rubygems.org'

gem 'rails', '3.0.0.rc'
gem 'mongoid', '2.0.0.beta11'
gem 'mongoid', '2.0.0.beta.15'
gem 'bson_ext', '1.0.4'
gem 'devise', '1.1.0'
gem 'devise', '1.1.1'
# uncomment the next two lines if you wish to use Haml
# gem 'haml', '3.0.14'
# gem 'rails3-generators', :group => :development
Expand Down
2 changes: 1 addition & 1 deletion template.rb
Expand Up @@ -49,7 +49,7 @@
puts "setting up Gemfile for Mongoid..."
gsub_file 'Gemfile', /gem \'sqlite3-ruby/, '# gem \'sqlite3-ruby'
append_file 'Gemfile', "\n# Bundle gems needed for Mongoid\n"
gem 'mongoid', '2.0.0.beta11'
gem 'mongoid', '2.0.0.beta.15'
gem 'bson_ext', '1.0.4'

puts "installing Mongoid gems (takes a few minutes!)..."
Expand Down

0 comments on commit 599ef41

Please sign in to comment.