Skip to content

Commit

Permalink
Updates travis configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
rudionrails committed Oct 23, 2016
1 parent 9bb8450 commit b330823
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pkg/*
.idea

# bundler
Gemfile.lock
Gemfile.*lock

# vim
*.swp
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.3.1
32 changes: 20 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
sudo: false
language: ruby

script: "rspec"

rvm:
- ruby-head
- 2.3.1
- 2.2.5
- 2.1.10
- 2.0.0
matrix:
- rvm: ruby-head
- rvm: 2.3.1
- rvm: 2.2.5

- jruby-9.1.5.0
- jruby-9.0.5.0
- jruby-1.7.26
- rvm: 2.2.2
gemfile: gemfiles/Gemfile.lte-2.2.2
- rvm: 2.1.0
gemfile: gemfiles/Gemfile.lte-2.2.2

- rubinius-3.9
- rubinius-2.9
- rvm: 1.9.3
gemfile: gemfiles/Gemfile.lte-1.9.3

- rvm: 1.8.7
gemfile: gemfiles/Gemfile.lte-1.8.7

- rvm: jruby-9.1.5.0
- rvm: jruby-9.0.5.0
- rvm: jruby-1.7.26

- rvm: rubinius-3.9
- rvm: rubinius-2.9

notifications:
on_success: change
Expand Down
16 changes: 6 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@ group :development, :test do
gem 'rspec-mocks'
gem 'rspec-its'

if RUBY_VERSION < "1.9"
gem 'timecop', '0.6.0'
gem 'activesupport', '~> 3'
else
gem 'timecop'
gem 'activesupport'
gem 'timecop'
gem 'byebug'
gem 'timecop'

gem 'byebug'
end
gem 'activesupport', '~> 5'

gem 'simplecov', :require => false, :platform => :ruby_20
gem 'coveralls', :require => false, :platform => :ruby_20
gem 'simplecov', :require => false
gem 'coveralls', :require => false
end

17 changes: 17 additions & 0 deletions Gemfile.lte-1.9.3
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
source "http://rubygems.org"

# Specify your gem's dependencies in yell.gemspec
gemspec

group :development, :test do
gem 'rake'

gem 'rspec-core', '~> 3'
gem 'rspec-expectations'
gem 'rspec-mocks'
gem 'rspec-its'

gem 'timecop', '~> 0.8'

gem 'activesupport', '~> 3'
end

0 comments on commit b330823

Please sign in to comment.