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

Only use supported versions of Ruby and Rails #97

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
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