Skip to content

Commit

Permalink
test each rails 5.x version, update rubies
Browse files Browse the repository at this point in the history
  • Loading branch information
lostapathy committed Dec 8, 2017
1 parent b656747 commit d1c2b6c
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.2.8
- 2.3.5
- 2.4.2
- jruby-9.1.9.0

gemfile:
- Gemfile
- gemfiles/activesupport4.1.gemfile
- gemfiles/activesupport4.2.gemfile
- gemfiles/activesupport5.0.gemfile
- gemfiles/activesupport5.1.gemfile
- gemfiles/activesupport5.2.gemfile
env:
global:
- JRUBY_OPTS=--debug
19 changes: 19 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
appraise 'activesupport4.1' do
gem "activesupport", "~> 4.1.0"
end

appraise 'activesupport4.2' do
gem "activesupport", "~> 4.2.0"
end

appraise 'activesupport5.0' do
gem "activesupport", "~> 5.0.0"
end

appraise 'activesupport5.1' do
gem "activesupport", "~> 5.1.0"
end

appraise 'activesupport5.2' do
gem "activesupport", "~> 5.2.0beta2"
end
4 changes: 3 additions & 1 deletion gemfiles/activesupport4.1.gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
source "https://rubygems.org"
# This file was generated by Appraisal

source "http://rubygems.org"

gem "activesupport", "~> 4.1.0"

Expand Down
4 changes: 3 additions & 1 deletion gemfiles/activesupport4.2.gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
source "https://rubygems.org"
# This file was generated by Appraisal

source "http://rubygems.org"

gem "activesupport", "~> 4.2.0"

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/activesupport5.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "http://rubygems.org"

gem "activesupport", "~> 5.0.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/activesupport5.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "http://rubygems.org"

gem "activesupport", "~> 5.1.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/activesupport5.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "http://rubygems.org"

gem "activesupport", "~> 5.2.0beta2"

gemspec path: "../"
1 change: 1 addition & 0 deletions whenever.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ Gem::Specification.new do |s|
s.add_development_dependency "rake"
s.add_development_dependency "mocha", ">= 0.9.5"
s.add_development_dependency "minitest"
s.add_development_dependency "appraisal"
end

0 comments on commit d1c2b6c

Please sign in to comment.