rley 0.7.01 → 0.7.02
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 +4 -4
- data/.travis.yml +5 -3
- data/CHANGELOG.md +5 -1
- data/Gemfile +0 -1
- data/appveyor.yml +16 -11
- data/lib/rley/constants.rb +1 -1
- metadata +2 -3
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83b3751addeb91efb6316ca04e2bd24c3dbec7b8
|
|
4
|
+
data.tar.gz: 8fb879d8e65eae6638611ac78381a54cfa76ddf6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21ec0cbdd4fb79c6a7f45c834b9f4c1a36c7b9054d2b0c39a5c4f8bd3cf2bfef4387a501d7fc44194772191cf66d287ebe0086b558ef00474d4976a7bf0737f7
|
|
7
|
+
data.tar.gz: deb719ebd4f82db564ac42f5f40b23c5d5908bc44b8fd26788039d53493e548fa611bdfa1256bfb2ff7c0aeedb77cd1db26d88f9942b0bf95d5d86aaa8323827
|
data/.travis.yml
CHANGED
|
@@ -4,17 +4,19 @@ rvm:
|
|
|
4
4
|
- 2.5.3
|
|
5
5
|
- 2.4.5
|
|
6
6
|
- 2.3.8
|
|
7
|
-
- 2.2.10
|
|
8
|
-
- 2.1.10
|
|
9
|
-
- 2.0.0-p648
|
|
10
7
|
- ruby-head
|
|
11
8
|
- jruby-9.1.9.0
|
|
12
9
|
- jruby-head
|
|
13
10
|
matrix:
|
|
14
11
|
allow_failures:
|
|
12
|
+
- rvm: 2.6.0
|
|
15
13
|
- rvm: ruby-head
|
|
16
14
|
- rvm: jruby-head
|
|
17
15
|
|
|
16
|
+
before_install:
|
|
17
|
+
- gem update --system
|
|
18
|
+
- gem install bundler
|
|
19
|
+
|
|
18
20
|
gemfile:
|
|
19
21
|
- Gemfile
|
|
20
22
|
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
### 0.7.02 / 2019-01-13
|
|
2
|
+
- Removed Ruby versions older than 2.3 in CI testing because of breaking changes by Bundler 2.0
|
|
3
|
+
* [CHANGE] Files `Gemfile`, `.travis.yml`, `appveyor.yml` updated.
|
|
4
|
+
|
|
1
5
|
### 0.7.01 / 2019-01-03
|
|
2
6
|
- Maintenance release.
|
|
3
7
|
|
|
4
8
|
* [CHANGE] Code re-styling to please Rubocop 0.62.0.
|
|
5
9
|
* [CHANGE] File `.travis.yml`: updated Ruby versions.
|
|
6
10
|
* [CHANGE] File `appveyor.yml` updated Ruby versions.
|
|
7
|
-
* [CHANGE] File `README.me` removal obsolete
|
|
11
|
+
* [CHANGE] File `README.me` removal obsolete badge.
|
|
8
12
|
* [CHANGE] File `LICENSE.txt` Updated copyright years.
|
|
9
13
|
|
|
10
14
|
### 0.7.00 / 2018-11-24
|
data/Gemfile
CHANGED
data/appveyor.yml
CHANGED
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
version: '{build}'
|
|
2
|
-
max_jobs:
|
|
2
|
+
max_jobs: 5
|
|
3
3
|
environment:
|
|
4
4
|
matrix:
|
|
5
|
-
|
|
6
|
-
- Ruby_version: 24-x64
|
|
5
|
+
- Ruby_version: 25-x64
|
|
6
|
+
- Ruby_version: 24-x64
|
|
7
7
|
- Ruby_version: 23-x64
|
|
8
|
-
- Ruby_version:
|
|
9
|
-
- Ruby_version:
|
|
10
|
-
- Ruby_version: 200-x64
|
|
11
|
-
#- Ruby_version: 25
|
|
12
|
-
- Ruby_version: 24
|
|
8
|
+
- Ruby_version: 25
|
|
9
|
+
- Ruby_version: 24
|
|
13
10
|
- Ruby_version: 23
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- Ruby_version:
|
|
11
|
+
|
|
12
|
+
# These are failing
|
|
13
|
+
# - Ruby_version: 26
|
|
14
|
+
# - Ruby_version: 26-x64
|
|
17
15
|
|
|
18
16
|
install:
|
|
19
17
|
- set PATH=C:\Ruby%Ruby_version%\bin;%PATH%
|
|
18
|
+
- gem update --system
|
|
19
|
+
- gem install bundler
|
|
20
20
|
- bundle install --retry=3 --clean --force
|
|
21
21
|
|
|
22
22
|
build: off
|
|
23
23
|
|
|
24
|
+
before_test:
|
|
25
|
+
- ruby -v
|
|
26
|
+
- gem -v
|
|
27
|
+
- bundle -v
|
|
28
|
+
|
|
24
29
|
test_script:
|
|
25
30
|
- bundle exec rake
|
data/lib/rley/constants.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rley
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.02
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dimitri Geshef
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01-
|
|
11
|
+
date: 2019-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coveralls
|
|
@@ -120,7 +120,6 @@ files:
|
|
|
120
120
|
- ".rspec"
|
|
121
121
|
- ".rubocop.yml"
|
|
122
122
|
- ".ruby-gemset"
|
|
123
|
-
- ".ruby-version"
|
|
124
123
|
- ".simplecov"
|
|
125
124
|
- ".travis.yml"
|
|
126
125
|
- ".yardopts"
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.2.3
|