Update to Rails 4 release.

Rails 4 has now been released. Unfortunately, the '>= 4.0.0.rc1'
dependency doesn't work with the release.

Change-Id: I0db87057dfe8f8dd5c9947a21df4b6b7e060d898
This commit is contained in:
Adam Mueller 2013-06-25 14:06:47 -07:00
parent a2286a6d6d
commit 552f62d85d
3 changed files with 21 additions and 21 deletions

View File

@ -3,9 +3,9 @@ source 'https://rubygems.org'
gemspec gemspec
gem 'country_select', '~> 1.1.1' gem 'country_select', '~> 1.1.1'
gem 'railties', '>= 4.0.0.rc1', '< 4.1' gem 'railties', '>= 4.0.0', '< 4.1'
gem 'activemodel', '>= 4.0.0.rc1', '< 4.1' gem 'activemodel', '>= 4.0.0', '< 4.1'
gem 'actionpack', '>= 4.0.0.rc1', '< 4.1' gem 'actionpack', '>= 4.0.0', '< 4.1'
gem 'rake' gem 'rake'
gem 'rdoc' gem 'rdoc'
gem 'tzinfo' gem 'tzinfo'

View File

@ -2,41 +2,41 @@ PATH
remote: . remote: .
specs: specs:
simple_form (3.0.0.rc) simple_form (3.0.0.rc)
actionpack (>= 4.0.0.rc1, < 4.1) actionpack (>= 4.0.0, < 4.1)
activemodel (>= 4.0.0.rc1, < 4.1) activemodel (>= 4.0.0, < 4.1)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
actionpack (4.0.0.rc1) actionpack (4.0.0)
activesupport (= 4.0.0.rc1) activesupport (= 4.0.0)
builder (~> 3.1.0) builder (~> 3.1.0)
erubis (~> 2.7.0) erubis (~> 2.7.0)
rack (~> 1.5.2) rack (~> 1.5.2)
rack-test (~> 0.6.2) rack-test (~> 0.6.2)
activemodel (4.0.0.rc1) activemodel (4.0.0)
activesupport (= 4.0.0.rc1) activesupport (= 4.0.0)
builder (~> 3.1.0) builder (~> 3.1.0)
activesupport (4.0.0.rc1) activesupport (4.0.0)
i18n (~> 0.6, >= 0.6.4) i18n (~> 0.6, >= 0.6.4)
minitest (~> 4.2) minitest (~> 4.2)
multi_json (~> 1.3) multi_json (~> 1.3)
thread_safe (~> 0.1) thread_safe (~> 0.1)
tzinfo (~> 0.3.37) tzinfo (~> 0.3.37)
atomic (1.1.8) atomic (1.1.9)
builder (3.1.4) builder (3.1.4)
country_select (1.1.3) country_select (1.1.3)
erubis (2.7.0) erubis (2.7.0)
i18n (0.6.4) i18n (0.6.4)
json (1.7.7) json (1.7.7)
minitest (4.7.4) minitest (4.7.5)
multi_json (1.7.2) multi_json (1.7.7)
rack (1.5.2) rack (1.5.2)
rack-test (0.6.2) rack-test (0.6.2)
rack (>= 1.0) rack (>= 1.0)
railties (4.0.0.rc1) railties (4.0.0)
actionpack (= 4.0.0.rc1) actionpack (= 4.0.0)
activesupport (= 4.0.0.rc1) activesupport (= 4.0.0)
rake (>= 0.8.7) rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0) thor (>= 0.18.1, < 2.0)
rake (10.0.4) rake (10.0.4)
@ -51,10 +51,10 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
actionpack (>= 4.0.0.rc1, < 4.1) actionpack (>= 4.0.0, < 4.1)
activemodel (>= 4.0.0.rc1, < 4.1) activemodel (>= 4.0.0, < 4.1)
country_select (~> 1.1.1) country_select (~> 1.1.1)
railties (>= 4.0.0.rc1, < 4.1) railties (>= 4.0.0, < 4.1)
rake rake
rdoc rdoc
simple_form! simple_form!

View File

@ -20,6 +20,6 @@ Gem::Specification.new do |s|
s.rubyforge_project = "simple_form" s.rubyforge_project = "simple_form"
s.add_dependency('activemodel', '>= 4.0.0.rc1', '< 4.1') s.add_dependency('activemodel', '>= 4.0.0', '< 4.1')
s.add_dependency('actionpack', '>= 4.0.0.rc1', '< 4.1') s.add_dependency('actionpack', '>= 4.0.0', '< 4.1')
end end