sequitur 0.1.12 → 0.1.13
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 +5 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -0
- data/lib/sequitur/constants.rb +1 -1
- data/lib/sequitur/production.rb +0 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTk1NDVlNDJjZDIzZTY5OTE4ODI3MWM0MDc0M2EwMjIyNzRmZTk5Ng==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MWE5OTE1MmE2NjQ0ZTk1ZmUyYzIwZTllMjFiMmE4OGU1ZGJiODZiMQ==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YWU0MzRlZGZjZWIyNDUzMjNhZDU3ZWFmZDIxZmExMTc0NWI1YTFjNDhkYmQ4
|
|
10
|
+
NGMzYzc1ZWQwMGM4ZGUzMjVlN2JhNDhjMTU2YWUzYjU3OTQ4NWY2ZTFmZGE1
|
|
11
|
+
NGQyZGM4ZTdkOTcyNjQ1MmRkNTgyM2NjYjcxYmU0NWI4NWE1ODc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
OTA0NjIxZWU3OGU0MjY2MWVlYWQ4NDVmYTc0NDA0ZDQyZTQ1MTQzNmZhMjRj
|
|
14
|
+
ZDMwMmFiMzlkZGE5MmRkN2FmMGVjMWJhNWEwZmM4YjJjNWFkMDQ2YjRmMWQ3
|
|
15
|
+
MDU3MTY3NDIwZWZiZGQ1Y2UyNTU2ODZmZWJhOWQxZDE1MDY4MzM=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
### 0.1.13 / 2014-10-07
|
|
2
|
+
* [FIX] File `LICENSE.txt`: was missing in the distribuation but was referenced in README.
|
|
3
|
+
* [CHANGE] File `README.md`: added badge from license (MIT).
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
### 0.1.12 / 2014-10-07
|
|
2
7
|
* [CHANGE] File `README.md`: Fixed documentation inaccuracy.
|
|
3
8
|
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -9,6 +9,7 @@ _Ruby gem implementing the Sequitur algorithm_
|
|
|
9
9
|
[](https://gemnasium.com/famished-tiger/Sequitur)
|
|
10
10
|
[](http://inch-ci.org/github/famished-tiger/Sequitur)
|
|
11
11
|
[](https://codeclimate.com/github/famished-tiger/Sequitur)
|
|
12
|
+
[](https://github.com/famished-tiger/Sequitur/blob/master/LICENSE.txt)
|
|
12
13
|
|
|
13
14
|
### What is the Sequitur algorithm? ###
|
|
14
15
|
The following are good entry points to learn about the algorithm:
|
data/lib/sequitur/constants.rb
CHANGED
data/lib/sequitur/production.rb
CHANGED
|
@@ -31,8 +31,6 @@ class Production
|
|
|
31
31
|
@digrams = []
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
|
|
36
34
|
public
|
|
37
35
|
|
|
38
36
|
# Identity testing.
|
|
@@ -125,7 +123,6 @@ class Production
|
|
|
125
123
|
end
|
|
126
124
|
|
|
127
125
|
|
|
128
|
-
|
|
129
126
|
# Emit a text representation of the production rule.
|
|
130
127
|
# Text is of the form:
|
|
131
128
|
# object id of production : rhs as space-separated sequence of symbols.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sequitur
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dimitri Geshef
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|