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 +5 -5
- data/.travis.yml +11 -4
- data/Changelog.md +3 -0
- data/Gemfile +5 -8
- data/lib/highline/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 6f6f0077459b346ac0550722ee90fe5bab80bdab266d7fd109400593d0e44494
|
|
4
|
+
data.tar.gz: 0ae39b4928822060ec41ffa58619f450996feddde22d3b56bc710fe7748b1b0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
-
|
|
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.
|
|
33
|
-
|
|
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
|
data/lib/highline/version.rb
CHANGED
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.
|
|
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:
|
|
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
|
|
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.
|