rley 0.7.01 → 0.7.02

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d453e82683bb3a51986dad86b0b34d100fd4c27
4
- data.tar.gz: bce3fa7704cb65670102ecfcb78ee762bdad7ba5
3
+ metadata.gz: 83b3751addeb91efb6316ca04e2bd24c3dbec7b8
4
+ data.tar.gz: 8fb879d8e65eae6638611ac78381a54cfa76ddf6
5
5
  SHA512:
6
- metadata.gz: bfba908cc187a280ed9a236414cd79ff9880abc96997acdb8c33a4c36f39731ca9b2d4c99be6e2adfb45ef053bd275ba052d8a2d61e851f6607b9ebd2248d1c8
7
- data.tar.gz: 1b20d6ebe85f9d174a7ce8e2a5729e7eaa09fffa0550eb6e586592dd24d4b3cc0c309139b1d2368178309a2ed1eb411c3e07e05509152491961248c8a61492ea
6
+ metadata.gz: 21ec0cbdd4fb79c6a7f45c834b9f4c1a36c7b9054d2b0c39a5c4f8bd3cf2bfef4387a501d7fc44194772191cf66d287ebe0086b558ef00474d4976a7bf0737f7
7
+ data.tar.gz: deb719ebd4f82db564ac42f5f40b23c5d5908bc44b8fd26788039d53493e548fa611bdfa1256bfb2ff7c0aeedb77cd1db26d88f9942b0bf95d5d86aaa8323827
@@ -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
 
@@ -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 icon.
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
@@ -1,5 +1,4 @@
1
1
  source 'https://rubygems.org'
2
- # Prevent Bundler to load the dependencies from our .gemspec file
3
2
 
4
3
  group :development do
5
4
  gem 'coveralls', '>= 0.7.0'
@@ -1,25 +1,30 @@
1
1
  version: '{build}'
2
- max_jobs: 3
2
+ max_jobs: 5
3
3
  environment:
4
4
  matrix:
5
- #- Ruby_version: 25-x64
6
- - Ruby_version: 24-x64
5
+ - Ruby_version: 25-x64
6
+ - Ruby_version: 24-x64
7
7
  - Ruby_version: 23-x64
8
- - Ruby_version: 22-x64
9
- - Ruby_version: 21-x64
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
- - Ruby_version: 22
15
- - Ruby_version: 21
16
- - Ruby_version: 200
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
@@ -3,7 +3,7 @@
3
3
 
4
4
  module Rley # Module used as a namespace
5
5
  # The version number of the gem.
6
- Version = '0.7.01'.freeze
6
+ Version = '0.7.02'.freeze
7
7
 
8
8
  # Brief description of the gem.
9
9
  Description = "Ruby implementation of the Earley's parsing algorithm".freeze
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.01
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-03 00:00:00.000000000 Z
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"
@@ -1 +0,0 @@
1
- 2.2.3