summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml15
-rw-r--r--Changelog.md3
-rw-r--r--Gemfile3
-rw-r--r--lib/highline/version.rb2
4 files changed, 15 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 75df415..57737df 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,8 +9,7 @@ rvm:
- 2.1
- 2.2
- 2.3
- - ruby-head
- - rbx-3.81
+ - 2.4
- jruby-19mode # JRuby in 1.9 mode
- jruby-head
@@ -29,6 +28,14 @@ matrix:
before_install:
- "gem update --system -N"
- "gem update bundler -N"
- - rvm: 2.4
- script: "bundle exec rake test && bundle exec codeclimate-test-reporter" # Run only for 2.4
+ - rvm: 2.5
+ before_install:
+ - gem install bundler
+ - rvm: ruby-head
+ before_install:
+ - gem install bundler
+ - rvm: rbx-3.81
+ before_install:
+ - gem install bundler
+
bundler_args: --without code_quality
diff --git a/Changelog.md b/Changelog.md
index 2e316ff..5d3b044 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -2,6 +2,9 @@
Below is a complete listing of changes for each revision of HighLine.
+### 2.0.0-develop.15 / 2017-12-28
+* PR #229 - Update .travis.yml. Add Ruby 2.5 to matrix (@abinoam)
+
### 2.0.0-develop.14 / 2017-11-21
* PR #222 / I #221 - Fix inconsistent behaviour when using agree with readline (@abinoam, @ailisp)
diff --git a/Gemfile b/Gemfile
index cde3bc3..e8d72b7 100644
--- a/Gemfile
+++ b/Gemfile
@@ -7,9 +7,6 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Specify your gem's dependencies in tgem.gemspec
gemspec
-# Reporting only at one ruby version of travis matrix (no repetition)
-gem "codeclimate-test-reporter", group: :test, require: false
-
platform :ruby do
# Running only on MRI
gem "simplecov", group: :test
diff --git a/lib/highline/version.rb b/lib/highline/version.rb
index 3bd94a3..8465ec5 100644
--- a/lib/highline/version.rb
+++ b/lib/highline/version.rb
@@ -2,5 +2,5 @@
class HighLine
# The version of the installed library.
- VERSION = "2.0.0-develop.14".freeze
+ VERSION = "2.0.0-develop.15".freeze
end