sequitur 0.1.05 → 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 +10 -0
- data/Gemfile +1 -0
- data/README.md +1 -0
- data/lib/sequitur/constants.rb +1 -1
- data/spec/spec_helper.rb +8 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzBkNjMyMWI2NjUxNDUxMWE0ZDg0Y2MxOTQ5NDViMThkZjk5NDlhNQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NmFjODAxMDdiODNmNDdiYmQwNTMzOGJiMmY5NDVhOTFkMjUyOTEyMw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTBhYzNkMmM2ZTExOTQwNmIzMTlmYmUxNTVlZTY1MjJjYmMwMzYxZmEwMjhm
|
10
|
+
MWY1MDJhZDY3ZTdhZWEwZjRiY2M3Yjc1NTY4ZjkxYzZiMWNkYjY2YTA3Zjhh
|
11
|
+
MTY0ZmMxZTAyYTMxYWE3MmJhMjE0MDFiMWViMWUxYmQ1ZDQwOWU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NjBkYmE4MjYwNGQxODFkMjJlZGFkNWI1Yzc3YmE0OWY5OWQyNGZmZTZhNzQ5
|
14
|
+
ZTA4NDhiMWQwMGFiM2EzODczOTJkZTA4OTlhZmY0NzUwMDBlMTJmZDM2MjY1
|
15
|
+
OWU0MzM3NjdhYWNhNDAyOTQ1MDc5YzQ5ZWJkZTY3YjcxMDkzNjI=
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
### 0.1.07 / 2014-09-29
|
2
|
+
* [CHANGE] File `README.md`: Fixed bad Markdown syntax in badge part.
|
3
|
+
|
4
|
+
### 0.1.06 / 2014-09-29
|
5
|
+
* [NEW] New file `.coveralls.yml` Coveralls configured to use Travis CI
|
6
|
+
* [CHANGE] File `README.md`: added badge from coveralls (test coverage).
|
7
|
+
* [CHANGE] Files `Gemfile`, `sequitur.gemspec`: added development dependency on coveralls gem.
|
8
|
+
* [CHANGE] File `spec_helper.rb` Added Coveralls customization code
|
9
|
+
|
10
|
+
|
1
11
|
### 0.1.05 / 2014-09-28
|
2
12
|
* [CHANGE] File `README.md`: added badge from inch-ci.org (documentation quality).
|
3
13
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -4,6 +4,7 @@ _Ruby gem implementing the Sequitur algorithm_
|
|
4
4
|
[Homepage](https://github.com/famished-tiger/Sequitur)
|
5
5
|
|
6
6
|
[](https://travis-ci.org/famished-tiger/Sequitur)
|
7
|
+
[](https://coveralls.io/r/famished-tiger/Sequitur)
|
7
8
|
[](http://badge.fury.io/rb/sequitur)
|
8
9
|
[](https://gemnasium.com/famished-tiger/Sequitur)
|
9
10
|
[](http://inch-ci.org/github/famished-tiger/Sequitur)
|
data/lib/sequitur/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,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.07
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dimitri Geshef
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ! '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 0.5.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
|