Skip to content

Commit

Permalink
[FEATURE] Officially support Rails 5.2
Browse files Browse the repository at this point in the history
Closes #45
  • Loading branch information
oliverklee committed Sep 15, 2018
1 parent 1559500 commit e557a45
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ gemfile:
- gemfiles/Gemfile.rails-4-2
- gemfiles/Gemfile.rails-5-0
- gemfiles/Gemfile.rails-5-1
- gemfiles/Gemfile.rails-5-2

install:
- bundle install
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## x.y.z (unreleased)

### Added
- Officially support Rails 5.2
([#51](https://github.com/braingourmets/currency_select/pull/51))

### Changed

Expand Down
3 changes: 2 additions & 1 deletion currency_select.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Gem::Specification.new do |s|
s.files = %w(lib/currency_select.rb rails/init.rb CHANGELOG.md CODE_OF_CONDUCT.md currency_select.gemspec Gemfile LICENSE Rakefile README.md VERSION)
s.extra_rdoc_files = %w(CHANGELOG.md LICENSE README.rdoc)

s.add_runtime_dependency 'actionview'
s.add_runtime_dependency 'actionview', '>= 4.2.0', '< 6.0'
s.add_runtime_dependency 'money'

s.add_development_dependency 'rspec-rails'
end
7 changes: 7 additions & 0 deletions gemfiles/Gemfile.rails-5-2
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source 'http://rubygems.org'

gem 'rails', '~> 5.2.0'

gemspec path: '../'

0 comments on commit e557a45

Please sign in to comment.