Skip to content

Commit 05270e2

Browse files
fwiningermgomes
authored andcommitted
Fix unit test pipeline and add ruby 2.6 support (#174)
* Fix unit-test pipeline Signed-off-by: Florian Wininger <fw.centrale@gmail.com> * Add ruby 2.6 in the test pipeline Signed-off-by: Florian Wininger <fw.centrale@gmail.com>
1 parent 09c862c commit 05270e2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ rvm:
55
- 2.3.6
66
- 2.4.3
77
- 2.5.3
8+
- 2.6.1
89
gemfile:
910
- gemfiles/rails_4.gemfile
1011
- gemfiles/rails_41.gemfile
@@ -26,7 +27,7 @@ script:
2627

2728
matrix:
2829
include:
29-
- rvm: 2.5.3
30+
- rvm: 2.6.1
3031
gemfile: gemfiles/rails_5.gemfile
3132
env: TEST_SUITE="rubocop lib/ spec/"
3233

gemfiles/rails_5.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source 'https://rubygems.org'
44

55
gem 'actionpack', '~> 5.0.2'
6-
gem 'activeresource', '~> 5.0.0', git: 'https://github.com/rails/activeresource.git'
6+
gem 'activeresource', '~> 5.0.0'
77
gem 'activesupport', '~> 5.0.2'
88

99
gem 'rubocop'

gemfiles/rails_51.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source 'https://rubygems.org'
44

55
gem 'actionpack', '~> 5.1.1'
6-
gem 'activeresource', '~> 5.0.0', git: 'https://github.com/rails/activeresource.git'
6+
gem 'activeresource', '~> 5.1.0'
77
gem 'activesupport', '~> 5.1.1'
88

99
gemspec path: '../'

gemfiles/rails_52.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source 'https://rubygems.org'
44

55
gem 'actionpack', '~> 5.2.1'
6-
gem 'activeresource', '~> 5.0.0', git: 'https://github.com/rails/activeresource.git'
6+
gem 'activeresource', '~> 5.1.0'
77
gem 'activesupport', '~> 5.2.1'
88

99
gemspec path: '../'

0 commit comments

Comments
 (0)