Skip to content

Commit

Permalink
Only use supported versions of Ruby and Rails
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart de Water committed Aug 31, 2017
1 parent b9c5f52 commit fb15b9a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 26 deletions.
20 changes: 4 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,11 @@ script: bundle exec rake test
sudo: false

rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2.2"
- "2.2"
- "2.3"
- "2.4"

gemfile:
- Gemfile.activesupport32
- Gemfile.activesupport40
- Gemfile.activesupport41
- Gemfile.activesupport42
- Gemfile.activesupport50

matrix:
exclude:
- rvm: "1.9"
gemfile: Gemfile.activesupport50
- rvm: "2.0"
gemfile: Gemfile.activesupport50
- rvm: "2.1"
gemfile: Gemfile.activesupport50
- Gemfile.activesupport51
4 changes: 0 additions & 4 deletions Gemfile.activesupport40

This file was deleted.

4 changes: 0 additions & 4 deletions Gemfile.activesupport41

This file was deleted.

2 changes: 1 addition & 1 deletion Gemfile.activesupport32 → Gemfile.activesupport51
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source "https://rubygems.org"
gemspec

gem 'activesupport', '~> 3.2.0'
gem 'activesupport', '~> 5.1.0'
3 changes: 2 additions & 1 deletion active_utils.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Gem::Specification.new do |s|

s.rubyforge_project = "active_utils"

s.add_dependency('activesupport', '>= 3.2', '< 5.2.0')
s.required_ruby_version = '>= 2.2'
s.add_dependency('activesupport', '>= 4.2', '< 5.2.0')
s.add_dependency('i18n')

s.add_development_dependency('rake')
Expand Down

0 comments on commit fb15b9a

Please sign in to comment.