Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Jan 12, 2012
1 parent c891667 commit 9038c6b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ source :rubygems

gemspec

gem 'activemodel', '>= 3.2.0.rc'
gem 'actionpack', '>= 3.2.0.rc'
gem 'rake'
gem 'rdoc'
gem 'mocha'
Expand Down
6 changes: 4 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
simple_form (2.0.0.dev)
actionpack (>= 3.0.0.rc, < 4.0)
activemodel (>= 3.0.0.rc, < 4.0)
actionpack (~> 3.0)
activemodel (~> 3.0)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -62,6 +62,8 @@ PLATFORMS
ruby

DEPENDENCIES
actionpack (>= 3.2.0.rc)
activemodel (>= 3.2.0.rc)
mocha
rake
rdoc
Expand Down
4 changes: 2 additions & 2 deletions simple_form.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ Gem::Specification.new do |s|

s.rubyforge_project = "simple_form"

s.add_dependency('activemodel', '>= 3.0.0.rc', '< 4.0')
s.add_dependency('actionpack', '>= 3.0.0.rc', '< 4.0')
s.add_dependency('activemodel', '~> 3.0')
s.add_dependency('actionpack', '~> 3.0')
end

0 comments on commit 9038c6b

Please sign in to comment.