Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TruffleRuby to the test matrix #229

Merged
merged 11 commits into from
Jun 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@ rvm:
- 2.4.5
- 2.5.3
- 2.6.0
- truffleruby
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/sinatra.gemfile
matrix:
exclude:
# truffleruby does not seem to work with Rails 4.2
- rvm: truffleruby
gemfile: gemfiles/rails_4.2.gemfile
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

* Upgraded dry-validation dependency to dry-schema 1.0 ([#224](https://github.com/railsconfig/config/pull/224))
* Moved constant to be defined on `Object` instead of `Kernel` ([#227](https://github.com/railsconfig/config/issues/227))
* Add TruffleRuby to the test matrix ([#229](https://github.com/railsconfig/config/issues/229))

## 1.7.2

Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ Config helps you easily manage environment specific settings in an easy and usab

## Compatibility

* Ruby `>= 2.4`
* Rails `>= 4.2` and `5`
* Padrino
* Sinatra

For Ruby 2.0 to 2.3 or Rails 3 to 4.1 use version `1.x`.

For older versions of Rails or Ruby use [AppConfig](http://github.com/fredwu/app_config).
* Interpreters
* [Ruby](https://www.ruby-lang.org/en/) `>= 2.4`
* [TruffleRuby](https://github.com/oracle/truffleruby) `>= 19.0.0`
* Application frameworks
* Rails `>= 4.2` and `5`
* Padrino
* Sinatra

For Ruby `2.0` to `2.3` or Rails `3` to `4.1` use version `1.x` of this gem. For older versions of Rails or Ruby use [AppConfig](http://github.com/fredwu/app_config).

## Installing

Expand Down
1 change: 0 additions & 1 deletion config.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Gem::Specification.new do |s|
s.add_dependency 'deep_merge', '~> 1.2', '>= 1.2.1'
s.add_dependency 'dry-schema', '~> 1.0'

s.add_development_dependency 'bundler', '~> 1.17', '>= 1.17.3'
s.add_development_dependency 'rake', '~> 12.0', '>= 12.0.0'

# Testing
Expand Down