Skip to content
Open
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
17 changes: 14 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,22 @@ rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- jruby
- jruby-19mode # JRuby in 1.9 mode
matrix:
exclude:
- rvm: 2.2
gemfile: Gemfile.activesupport60
- rvm: 2.3
gemfile: Gemfile.activesupport60
- rvm: 2.4
gemfile: Gemfile.activesupport60
- rvm: jruby-19mode
gemfile: Gemfile.activesupport60
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
gemfile:
- Gemfile.activesupport51

before_install:
- gem install bundler
- Gemfile.activesupport60
4 changes: 4 additions & 0 deletions Gemfile.activesupport60
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"
gemspec

gem 'activesupport', '~> 6.0'
2 changes: 1 addition & 1 deletion time_difference.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
gem.version = "0.7.0"
gem.license = 'MIT'

gem.add_runtime_dependency('activesupport', '~> 5.1')
gem.add_runtime_dependency('activesupport', '>= 5.1')
gem.add_development_dependency('rspec', '~> 3.7.0')
gem.add_development_dependency('rake')

Expand Down