Skip to content

Commit

Permalink
Add support for ActiveSupport 4.x and 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVartanov committed Jul 10, 2016
1 parent 60ed07a commit 73dc9c9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ bin/*
pkg
.idea
Gemfile.lock
/Gemfile_activesupport_4.lock
/Gemfile_activesupport_5.lock
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
language: ruby

rvm:
- 2.2.5
- 2.3.1
- jruby
- rbx

gemfile:
- Gemfile
- Gemfile_activesupport_4
- Gemfile_activesupport_5
5 changes: 5 additions & 0 deletions Gemfile_activesupport_4
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activesupport', '~> 4'
5 changes: 5 additions & 0 deletions Gemfile_activesupport_5
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "http://rubygems.org"

gemspec

gem 'activesupport', '~> 5'

0 comments on commit 73dc9c9

Please sign in to comment.