Skip to content

adding gemfile for rails 5.2.3; adding ruby 2.5.1, 2.6.0; trying to d… #355

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

Merged
merged 3 commits into from
Jul 23, 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
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ rvm:
- 2.2.6
- 2.3.3
- 2.4.1
- 2.5.1
- 2.6.0
- ruby-head
env:
global:
- CODECLIMATE_REPO_TOKEN=396d4263adb6febf1e6e9b0c0e176fbde35e1a116a3c1ecf8dd4f9384e41979b
Expand All @@ -12,6 +15,7 @@ gemfile:
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
- gemfiles/5.2.3.gemfile
matrix:
fast_finish: true
exclude:
Expand All @@ -23,6 +27,26 @@ matrix:
gemfile: gemfiles/4.1.gemfile
- rvm: 2.4.1
gemfile: gemfiles/4.2.gemfile
- rvm: 2.5.1
gemfile: gemfiles/3.2.gemfile
- rvm: 2.5.1
gemfile: gemfiles/4.0.gemfile
- rvm: 2.5.1
gemfile: gemfiles/4.1.gemfile
- rvm: 2.5.1
gemfile: gemfiles/4.2.gemfile
- rvm: 2.6.0
gemfile: gemfiles/4.0.gemfile
- rvm: 2.6.0
gemfile: gemfiles/4.1.gemfile
- rvm: 2.6.0
gemfile: gemfiles/4.2.gemfile
- rvm: ruby-head
gemfile: gemfiles/4.0.gemfile
- rvm: ruby-head
gemfile: gemfiles/4.1.gemfile
- rvm: ruby-head
gemfile: gemfiles/4.2.gemfile
# We need to install latest version of bundler, because one in travis
# image is too old to recognize platform => :mri_22 in Gemfile.
before_install:
Expand Down
15 changes: 15 additions & 0 deletions gemfiles/5.2.3.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rake"
gem "appraisal"
gem "activesupport", "~> 5.2.3"
gem "addressable", "~> 2.2"
gem "codeclimate-test-reporter", :group => :test, :require => nil

group :development, :test do
gem "byebug", :platforms => [:mri_20, :mri_21, :mri_22]
end

gemspec :path => "../"