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 +8 -8
- data/CHANGELOG.md +3 -0
- data/Gemfile +2 -1
- data/lib/rley/constants.rb +1 -1
- data/spec/spec_helper.rb +8 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODhiNGRjYmFhMmRlYTI0Mzg3NjIwNzBmY2IyZmI5YjUzMzBmNjU2Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTNjNGZkMzczYTY4ZWE2ZjMwYWIwMzM3NjM5MDVjNDIwNzFlMjAxYQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDMzYmNmOTMwOGRjMTY3YTFkZGYyYTQ5NTFmODc5MThlZTY5MTQxODcwYzk3
|
10
|
+
MWY1ZDU1NDI1M2YyMTkwOTc1YmViODE3YmE4M2VhOGYwNTAyZTEzN2U0NjMx
|
11
|
+
N2M3Yjk0Zjk3Y2I3OGYwYjMyZjQ4YzYzYzEwN2E1NjUxN2M1ODY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OWVmZmEwZWIwNGI4MzgzYTE0NWZkZWNiNjRiNDQ3ZjRjZDEwN2NhMWYwZTNk
|
14
|
+
MjczM2Q3Yzg0YmY4NjVhNmI1Mjg5MjEzZjI4Y2IzODEwMmM0MGZkNWZmZWU1
|
15
|
+
YWFlODhmNmY3NzczMzliNjViN2IxNWM0ZTNkOGYzZGE1YTcxMzE=
|
data/CHANGELOG.md
CHANGED
@@ -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
data/lib/rley/constants.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -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.
|
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.
|
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.
|
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
|