rley 0.1.06 → 0.1.07

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzFjODYyODc0MDUzODcwNDlmYWI0ODhkNTAxNDJjZmVlNTUwMTdiNg==
4
+ ODhiNGRjYmFhMmRlYTI0Mzg3NjIwNzBmY2IyZmI5YjUzMzBmNjU2Yg==
5
5
  data.tar.gz: !binary |-
6
- N2QxZWZlODFjNTBlMzM4NzgzMWMwYzY4YWUzZDI4MTk1ODAwZmY4Nw==
6
+ YTNjNGZkMzczYTY4ZWE2ZjMwYWIwMzM3NjM5MDVjNDIwNzFlMjAxYQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZDI3YjJmMjA0Mzg1NjhhNWJhMWZjNGIyNjE5OTg2NGYwMzNhNmUwMDA4ODM5
10
- ZWI2M2Q5NjAyMGIyODlkOTYxZTMyMjg3NjdkMjgzZDJlNjJmYmJiNTc3MDli
11
- OTcyZWIwOWFjY2UzMzRlMDA1OWU5ZTlhMDc4MGE0Yzc2MmRmYzE=
9
+ ZDMzYmNmOTMwOGRjMTY3YTFkZGYyYTQ5NTFmODc5MThlZTY5MTQxODcwYzk3
10
+ MWY1ZDU1NDI1M2YyMTkwOTc1YmViODE3YmE4M2VhOGYwNTAyZTEzN2U0NjMx
11
+ N2M3Yjk0Zjk3Y2I3OGYwYjMyZjQ4YzYzYzEwN2E1NjUxN2M1ODY=
12
12
  data.tar.gz: !binary |-
13
- NjMzOGViZTZmOTIwMTAwM2FjYTMyZjAyYjYzMmIyMjY0OTM4OTk0NDM3MzAw
14
- YTEyNzE2NjA0OTA0NTVmZDRkYTJiNDAxMDY1NTE2NjlhM2M2YzNhZTA0OWIy
15
- NWJkNTQ2M2RjMjAxZmUxMjQ3MmY5OGQ1ZmE2ZjMyYzUwMzhhNDA=
13
+ OWVmZmEwZWIwNGI4MzgzYTE0NWZkZWNiNjRiNDQ3ZjRjZDEwN2NhMWYwZTNk
14
+ MjczM2Q3Yzg0YmY4NjVhNmI1Mjg5MjEzZjI4Y2IzODEwMmM0MGZkNWZmZWU1
15
+ YWFlODhmNmY3NzczMzliNjViN2IxNWM0ZTNkOGYzZGE1YTcxMzE=
@@ -1,3 +1,6 @@
1
+ ### 0.1.07 / 2014-12-13
2
+ * [NEW] Added development dependency on 'coveralls' gem (for test coverage measurement)
3
+
1
4
  ### 0.1.06 / 2014-12-13
2
5
  * [NEW] New parse tree formatting class `JSON` for parse tree rendition in JSON.
3
6
  * [FIX] Method `Parsing#parse_tree` now add link to Token object for last TerminalNode in tree.
data/Gemfile CHANGED
@@ -4,5 +4,6 @@ source 'https://rubygems.org'
4
4
  group :development do
5
5
  gem 'rake', '>= 0.8.0'
6
6
  gem 'rspec', '>= 3.0.0'
7
- gem 'simplecov', '>= 0.5.0'
7
+ gem 'simplecov', '>= 0.7.0'
8
+ gem 'coveralls', '>= 0.7.0'
8
9
  end
@@ -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.1.06'
6
+ Version = '0.1.07'
7
7
 
8
8
  # Brief description of the gem.
9
9
  Description = "Ruby implementation of the Earley's parsing algorithm"
@@ -2,6 +2,14 @@
2
2
  # Purpose: utility file that is loaded by all our RSpec files
3
3
 
4
4
  require 'simplecov'
5
+ require 'coveralls'
6
+
7
+ Coveralls.wear!
8
+
9
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
10
+ SimpleCov::Formatter::HTMLFormatter,
11
+ Coveralls::SimpleCov::Formatter
12
+ ]
5
13
 
6
14
 
7
15
  require 'rspec' # Use the RSpec framework
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rley
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.06
4
+ version: 0.1.07
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dimitri Geshef
@@ -44,14 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
- version: 0.5.0
47
+ version: 0.7.0
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
- version: 0.5.0
54
+ version: 0.7.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: coveralls
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: 0.7.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: 0.7.0
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rubygems
57
71
  requirement: !ruby/object:Gem::Requirement