Allow Rails 5 but not Rails 5.1

We don't know if 5.1 will be backward compatible.
This commit is contained in:
Rafael Mendonça França 2015-10-07 21:04:25 -03:00
parent 9e8fc76f0a
commit 8d15b7ebc8
1 changed files with 2 additions and 2 deletions

View File

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