Skip to content

Commit

Permalink
Test and allow for newer versions of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adacosta committed May 27, 2010
1 parent 9d1d048 commit b6be4c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Use `bundle exec rake` in order to run the specs using the bundle
source "http://gemcutter.org"

gem "rails", "3.0.0.beta3"
gem "railties", "3.0.0.beta3"
gem "activesupport", "3.0.0.beta3"
gem "mongoid", "2.0.0.beta4"
gem "rails", ">=3.0.0.beta3"
gem "railties", ">=3.0.0.beta3"
gem "activesupport", ">=3.0.0.beta3"
gem "mongoid", ">=2.0.0.beta4"
4 changes: 2 additions & 2 deletions mongoid_rails_migrations.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'mongoid_rails_migrations'
s.version = '0.0.2'
s.version = '0.0.3'
s.summary = 'Data migrations for Mongoid in Active Record style, minus column input.'
s.description = 'Sometimes you just need to migrate data.'

Expand All @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
rails_version = '>= 3.0.0.beta3'

s.add_dependency('bundler', '>= 0.9.19')
s.add_dependency('mongoid', '2.0.0.beta4')
s.add_dependency('mongoid', '>=2.0.0.beta4')
s.add_dependency('rails', rails_version)
s.add_dependency('railties', rails_version)
s.add_dependency('activesupport', rails_version)
Expand Down

0 comments on commit b6be4c6

Please sign in to comment.