Skip to content

Commit

Permalink
Merge pull request #69 from Shopify/activesupport-5
Browse files Browse the repository at this point in the history
Test for Rails 5 support
  • Loading branch information
Jonathan Kwok authored Jul 4, 2016
2 parents 71dc12a + c65fe2b commit 6bcec6e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,20 @@ rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- "2.2.2"

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
4 changes: 4 additions & 0 deletions Gemfile.activesupport50
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"
gemspec

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

s.rubyforge_project = "active_utils"

s.add_dependency('activesupport', '>= 3.2')
s.add_dependency('activesupport', '>= 3.2', '< 5.1.0')
s.add_dependency('i18n')

s.add_development_dependency('rake')
Expand Down

0 comments on commit 6bcec6e

Please sign in to comment.