1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/gemfiles/Gemfile.rails-5-2-stable
Bijan Rahnema d918f708d7 Add support for Rails 5.2. (#1543)
* Add Rails 5.2 support.

* Add rails-5-2-stable specific gemfile and adust exclusion pattern for travis

* Revert Gemfile to original state.

* Update default Gemfile to latest rails (5.2) and latest country_select (3.1.1).

* Revert rubocop in gemspec. Add Ruby 2.5.0 to the travis test set.

* Allow older versions of railties.

* bundle update. add back activemodel requirement.

* Update Rails from RC2 to stable.

* Update gemfile.lock

* remove rails upper bounds from gemspec. rely on latest versions in gemfile
2018-04-11 09:44:49 -03:00

15 lines
377 B
Text

source 'https://rubygems.org'
gemspec :path => '..'
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubinius-developer_tools'
end
gem 'country_select', '~> 3.1.1'
gem 'railties', github: 'rails/rails', branch: '5-2-stable'
gem 'activemodel', github: 'rails/rails', branch: '5-2-stable'
gem 'actionpack', github: 'rails/rails', branch: '5-2-stable'
gem 'rake'
gem 'tzinfo'