highline 2.0.0.pre.develop.14 → 2.0.0.pre.develop.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5ab46fe65f6eb631cce1fe0cc62caf13925bd40b
4
- data.tar.gz: 4ac57c74c9460edca617bb6a829c1ec50bce410e
2
+ SHA256:
3
+ metadata.gz: 6f6f0077459b346ac0550722ee90fe5bab80bdab266d7fd109400593d0e44494
4
+ data.tar.gz: 0ae39b4928822060ec41ffa58619f450996feddde22d3b56bc710fe7748b1b0e
5
5
  SHA512:
6
- metadata.gz: 24f92f0180bb9cdfa88f76d73f5e3ab0794276120b41741e9083b5325aa7be9411be8226b8d62591692693fe1b3f4302dc2fbb0704d79c9b227f76ee319e57b9
7
- data.tar.gz: 2ed1a02b7bfd2d06bdd87b0e91fa6d1505d9d8d877461787ea431f0931acc2ae83eec795dbde832afa0cbb674113ae83442c47486d36e747a9333bf2cecf9282
6
+ metadata.gz: f52b6371cfc81e28f87dd8771ba7ac1c9e6b80404b14a4c6741be0b7c1e2395dd76855aed167520dc6e88692371cb4b0ecaf376fa0080a7cffbcebc121af7766
7
+ data.tar.gz: 64a65b6dd14cf5ac70cc3fdb3a7038f322f412a9b72ca2f3c32c4059f31a4c7543ddcf6ed1371a0e1eaee34c0b85419e83633c0d4b8868c0f850e4d3c0fd5e16
data/.travis.yml CHANGED
@@ -9,8 +9,7 @@ rvm:
9
9
  - 2.1
10
10
  - 2.2
11
11
  - 2.3
12
- - ruby-head
13
- - rbx-3.81
12
+ - 2.4
14
13
  - jruby-19mode # JRuby in 1.9 mode
15
14
  - jruby-head
16
15
 
@@ -29,6 +28,14 @@ matrix:
29
28
  before_install:
30
29
  - "gem update --system -N"
31
30
  - "gem update bundler -N"
32
- - rvm: 2.4
33
- script: "bundle exec rake test && bundle exec codeclimate-test-reporter" # Run only for 2.4
31
+ - rvm: 2.5
32
+ before_install:
33
+ - gem install bundler
34
+ - rvm: ruby-head
35
+ before_install:
36
+ - gem install bundler
37
+ - rvm: rbx-3.81
38
+ before_install:
39
+ - gem install bundler
40
+
34
41
  bundler_args: --without code_quality
data/Changelog.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Below is a complete listing of changes for each revision of HighLine.
4
4
 
5
+ ### 2.0.0-develop.15 / 2017-12-28
6
+ * PR #229 - Update .travis.yml. Add Ruby 2.5 to matrix (@abinoam)
7
+
5
8
  ### 2.0.0-develop.14 / 2017-11-21
6
9
  * PR #222 / I #221 - Fix inconsistent behaviour when using agree with readline (@abinoam, @ailisp)
7
10
 
data/Gemfile CHANGED
@@ -7,9 +7,6 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
7
7
  # Specify your gem's dependencies in tgem.gemspec
8
8
  gemspec
9
9
 
10
- # Reporting only at one ruby version of travis matrix (no repetition)
11
- gem "codeclimate-test-reporter", group: :test, require: false
12
-
13
10
  platform :ruby do
14
11
  # Running only on MRI
15
12
  gem "simplecov", group: :test
@@ -17,9 +14,9 @@ end
17
14
 
18
15
  group :code_quality do
19
16
  gem "flog", require: false
20
- gem "pronto", require: false
21
- gem "pronto-flay", require: false
22
- gem "pronto-poper", require: false
23
- gem "pronto-reek", require: false
24
- gem "pronto-rubocop", require: false
17
+ gem "pronto", require: false, platform: :ruby
18
+ gem "pronto-flay", require: false, platform: :ruby
19
+ gem "pronto-poper", require: false, platform: :ruby
20
+ gem "pronto-reek", require: false, platform: :ruby
21
+ gem "pronto-rubocop", require: false, platform: :ruby
25
22
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  class HighLine
4
4
  # The version of the installed library.
5
- VERSION = "2.0.0-develop.14".freeze
5
+ VERSION = "2.0.0-develop.15".freeze
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: highline
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre.develop.14
4
+ version: 2.0.0.pre.develop.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Edward Gray II
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-22 00:00:00.000000000 Z
11
+ date: 2018-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  version: 1.3.1
146
146
  requirements: []
147
147
  rubyforge_project:
148
- rubygems_version: 2.6.14
148
+ rubygems_version: 2.7.6
149
149
  signing_key:
150
150
  specification_version: 4
151
151
  summary: HighLine is a high-level command-line IO library.