badgerbadgerbadger 0.13.0 → 0.14.0
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 +4 -4
- data/.travis.yml +1 -1
- data/config/services.yaml +5 -4
- data/features/alternative-styles.feature +7 -8
- data/features/badger.feature +13 -10
- data/features/licenses.feature +6 -6
- data/features/multiple-remotes.feature +6 -7
- data/features/png.feature +6 -7
- data/features/pulls-and-issues.feature +8 -9
- data/features/remote-with-different-name.feature +6 -7
- data/features/rubygems.feature +10 -10
- data/features/services.feature +9 -9
- data/features/size.feature +7 -8
- data/features/ssh-remote.feature +9 -10
- data/lib/badger/badge.rb +1 -1
- data/lib/badger/cli.rb +2 -2
- data/lib/badger/version.rb +1 -1
- data/spec/size_spec.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5fc45adab722623be2c90cbf81eb1d8097b4fb4c
|
|
4
|
+
data.tar.gz: 7a69d0970d5da953f230cc2b7a677931617ab136
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2aa977353e440479d03213286f1923d6bfdef1023b9da378d1a64bae46d0ce80a87c4a39bc2840272d9a16042c20a49207bc8e1c61ecd8089f2acdb39205454d
|
|
7
|
+
data.tar.gz: d7ff3bbf2670cde9fcfa34700179fa2dc57441af84b7af9fe30255aea37a0c5fa7597f1e580eef1f2fadc854a7bfb9608fe1fbea3ecab1ccb592bceca7a9275d
|
data/.travis.yml
CHANGED
data/config/services.yaml
CHANGED
|
@@ -32,8 +32,9 @@ issues:
|
|
|
32
32
|
suffix: issues
|
|
33
33
|
|
|
34
34
|
size:
|
|
35
|
-
alt_text:
|
|
36
|
-
service_root:
|
|
37
|
-
url_path:
|
|
35
|
+
alt_text: Repo Size
|
|
36
|
+
service_root: reposs.herokuapp.com
|
|
37
|
+
url_path: github.com
|
|
38
38
|
# REST? Fuck REST
|
|
39
|
-
ugly_cruft:
|
|
39
|
+
ugly_cruft: ?path=
|
|
40
|
+
no_file_extension: true
|
|
@@ -5,16 +5,15 @@ Feature: Alternative styles
|
|
|
5
5
|
|
|
6
6
|
@travis @gemnasium @coveralls @gemspec @mit
|
|
7
7
|
Scenario: One with everything
|
|
8
|
-
When I successfully run `badger badge --style flat
|
|
8
|
+
When I successfully run `badger badge --style flat /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://rubygems.org/gems/suchgem)
|
|
16
|
+
[](http://doge.mit-license.org)
|
|
18
17
|
"""
|
|
19
18
|
Scenario: Invalid style choice
|
|
20
19
|
When I run `badger badge --style fluffy /tmp/wow_repo`
|
data/features/badger.feature
CHANGED
|
@@ -8,18 +8,21 @@ Feature: Badge robot
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
12
|
-
[](https://gemnasium.com/doge/wow)
|
|
13
|
-
[](https://coveralls.io/r/doge/wow)
|
|
14
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
-
[](https://rubygems.org/gems/suchgem)
|
|
16
|
-
[](http://doge.mit-license.org)
|
|
17
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://rubygems.org/gems/suchgem)
|
|
16
|
+
[](http://doge.mit-license.org)
|
|
18
17
|
"""
|
|
19
18
|
And the output should not contain:
|
|
20
19
|
"""
|
|
21
|
-
[](http://doge.mit-license.org)
|
|
22
|
-
[](http://doge.mit-license.org)
|
|
20
|
+
[](http://doge.mit-license.org)
|
|
21
|
+
[](http://doge.mit-license.org)
|
|
22
|
+
"""
|
|
23
|
+
And the output should not contain:
|
|
24
|
+
"""
|
|
25
|
+
[](https://github.com/badges/badgerbadgerbadger)
|
|
23
26
|
"""
|
|
24
27
|
|
|
25
28
|
Scenario: Handle a non-git-repo gracefully
|
|
@@ -44,4 +47,4 @@ This repo does not appear to have a github remote
|
|
|
44
47
|
Then the output should contain:
|
|
45
48
|
"""
|
|
46
49
|
badger version
|
|
47
|
-
"""
|
|
50
|
+
"""
|
data/features/licenses.feature
CHANGED
|
@@ -8,7 +8,7 @@ Feature: Get license badges
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
](http://doge.mit-license.org)
|
|
11
|
+
](http://doge.mit-license.org)
|
|
12
12
|
"""
|
|
13
13
|
And the output should not contain:
|
|
14
14
|
"""
|
|
@@ -16,8 +16,8 @@ Apache
|
|
|
16
16
|
"""
|
|
17
17
|
And the output should not contain:
|
|
18
18
|
"""
|
|
19
|
-
](http://doge.mit-license.org)
|
|
20
|
-
](http://doge.mit-license.org)
|
|
19
|
+
](http://doge.mit-license.org)
|
|
20
|
+
](http://doge.mit-license.org)
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
@license @apache
|
|
@@ -25,7 +25,7 @@ Apache
|
|
|
25
25
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
26
26
|
Then the output should contain:
|
|
27
27
|
"""
|
|
28
|
-
](http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
28
|
+
](http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
29
29
|
"""
|
|
30
30
|
And the output should not contain:
|
|
31
31
|
"""
|
|
@@ -37,7 +37,7 @@ GPL
|
|
|
37
37
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
38
38
|
Then the output should contain:
|
|
39
39
|
"""
|
|
40
|
-
](http://www.gnu.org/licenses/gpl-2.0.html)
|
|
40
|
+
](http://www.gnu.org/licenses/gpl-2.0.html)
|
|
41
41
|
"""
|
|
42
42
|
And the output should not contain:
|
|
43
43
|
"""
|
|
@@ -49,7 +49,7 @@ MIT
|
|
|
49
49
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
50
50
|
Then the output should contain:
|
|
51
51
|
"""
|
|
52
|
-
](http://www.gnu.org/licenses/gpl-3.0.html)
|
|
52
|
+
](http://www.gnu.org/licenses/gpl-3.0.html)
|
|
53
53
|
"""
|
|
54
54
|
|
|
55
55
|
@license @doge-license
|
|
@@ -9,11 +9,10 @@ Feature: Heroku remote
|
|
|
9
9
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
10
10
|
Then the output should contain:
|
|
11
11
|
"""
|
|
12
|
-
[](https://travis-ci.org/doge/wow)
|
|
13
|
-
[](https://gemnasium.com/doge/wow)
|
|
14
|
-
[](https://coveralls.io/r/doge/wow)
|
|
15
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
16
|
-
[](https://rubygems.org/gems/suchgem)
|
|
17
|
-
[](http://doge.mit-license.org)
|
|
18
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
12
|
+
[](https://travis-ci.org/doge/wow)
|
|
13
|
+
[](https://gemnasium.com/doge/wow)
|
|
14
|
+
[](https://coveralls.io/r/doge/wow)
|
|
15
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
16
|
+
[](https://rubygems.org/gems/suchgem)
|
|
17
|
+
[](http://doge.mit-license.org)
|
|
19
18
|
"""
|
data/features/png.feature
CHANGED
|
@@ -8,11 +8,10 @@ Feature: Badge robot
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo --png `
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
12
|
-
[](https://gemnasium.com/doge/wow)
|
|
13
|
-
[](https://coveralls.io/r/doge/wow)
|
|
14
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
-
[](https://rubygems.org/gems/suchgem)
|
|
16
|
-
[](http://doge.mit-license.org)
|
|
17
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://rubygems.org/gems/suchgem)
|
|
16
|
+
[](http://doge.mit-license.org)
|
|
18
17
|
"""
|
|
@@ -8,13 +8,12 @@ Scenario: One with everything
|
|
|
8
8
|
When I successfully run `badger badge --pulls /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
12
|
-
[](https://gemnasium.com/doge/wow)
|
|
13
|
-
[](https://coveralls.io/r/doge/wow)
|
|
14
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
-
[](https://github.com/doge/wow/issues)
|
|
16
|
-
[](https://github.com/doge/wow/pulls)
|
|
17
|
-
[](https://rubygems.org/gems/suchgem)
|
|
18
|
-
[](http://doge.mit-license.org)
|
|
19
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://github.com/doge/wow/issues)
|
|
16
|
+
[](https://github.com/doge/wow/pulls)
|
|
17
|
+
[](https://rubygems.org/gems/suchgem)
|
|
18
|
+
[](http://doge.mit-license.org)
|
|
20
19
|
"""
|
|
@@ -8,11 +8,10 @@ Feature: Badge robot
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
12
|
-
[](https://gemnasium.com/doge/wow)
|
|
13
|
-
[](https://coveralls.io/r/doge/wow)
|
|
14
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
-
[](https://rubygems.org/gems/suchgem)
|
|
16
|
-
[](http://doge.mit-license.org)
|
|
17
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://rubygems.org/gems/suchgem)
|
|
16
|
+
[](http://doge.mit-license.org)
|
|
18
17
|
"""
|
data/features/rubygems.feature
CHANGED
|
@@ -8,8 +8,8 @@ Feature: Get rubygems badge
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://rubygems.org/gems/suchgem)
|
|
12
|
-
[](http://doge.mit-license.org)
|
|
11
|
+
[](https://rubygems.org/gems/suchgem)
|
|
12
|
+
[](http://doge.mit-license.org)
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
15
|
@gemspecmultilicense @gpl3
|
|
@@ -17,10 +17,10 @@ Feature: Get rubygems badge
|
|
|
17
17
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
18
18
|
Then the output should contain:
|
|
19
19
|
"""
|
|
20
|
-
[](https://rubygems.org/gems/suchgem)
|
|
21
|
-
[](http://doge.mit-license.org)
|
|
22
|
-
[](http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
23
|
-
[](http://www.gnu.org/licenses/gpl-3.0.html)
|
|
20
|
+
[](https://rubygems.org/gems/suchgem)
|
|
21
|
+
[](http://doge.mit-license.org)
|
|
22
|
+
[](http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
23
|
+
[](http://www.gnu.org/licenses/gpl-3.0.html)
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
26
|
@gemspecnolicense
|
|
@@ -28,7 +28,7 @@ Feature: Get rubygems badge
|
|
|
28
28
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
29
29
|
Then the output should contain:
|
|
30
30
|
"""
|
|
31
|
-
[](https://rubygems.org/gems/suchgem)
|
|
31
|
+
[](https://rubygems.org/gems/suchgem)
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
And the output should not contain:
|
|
@@ -41,6 +41,6 @@ License
|
|
|
41
41
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
42
42
|
Then the output should contain:
|
|
43
43
|
"""
|
|
44
|
-
[](https://rubygems.org/gems/suchgem)
|
|
45
|
-
[](http://doge.mit-license.org)
|
|
46
|
-
"""
|
|
44
|
+
[](https://rubygems.org/gems/suchgem)
|
|
45
|
+
[](http://doge.mit-license.org)
|
|
46
|
+
"""
|
data/features/services.feature
CHANGED
|
@@ -8,19 +8,19 @@ Feature: Get service badges
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
12
|
"""
|
|
13
13
|
And the output should not contain:
|
|
14
14
|
"""
|
|
15
|
-
[](https://coveralls.io/r/doge/wow)
|
|
15
|
+
[](https://coveralls.io/r/doge/wow)
|
|
16
16
|
"""
|
|
17
17
|
And the output should not contain:
|
|
18
18
|
"""
|
|
19
|
-
[](https://gemnasium.com/doge/wow)
|
|
19
|
+
[](https://gemnasium.com/doge/wow)
|
|
20
20
|
"""
|
|
21
21
|
And the output should not contain:
|
|
22
22
|
"""
|
|
23
|
-
[](https://rubygems.org/gems/suchgem)
|
|
23
|
+
[](https://rubygems.org/gems/suchgem)
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
26
|
@gemnasium
|
|
@@ -28,7 +28,7 @@ Feature: Get service badges
|
|
|
28
28
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
29
29
|
Then the output should contain:
|
|
30
30
|
"""
|
|
31
|
-
[](https://gemnasium.com/doge/wow)
|
|
31
|
+
[](https://gemnasium.com/doge/wow)
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
@coveralls
|
|
@@ -36,12 +36,12 @@ Feature: Get service badges
|
|
|
36
36
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
37
37
|
Then the output should contain:
|
|
38
38
|
"""
|
|
39
|
-
[](https://gemnasium.com/doge/wow)
|
|
40
|
-
[](https://coveralls.io/r/doge/wow)
|
|
39
|
+
[](https://gemnasium.com/doge/wow)
|
|
40
|
+
[](https://coveralls.io/r/doge/wow)
|
|
41
41
|
"""
|
|
42
42
|
And the output should not contain:
|
|
43
43
|
"""
|
|
44
|
-
[](https://travis-ci.org/doge/wow)
|
|
44
|
+
[](https://travis-ci.org/doge/wow)
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
47
|
@codeclimate
|
|
@@ -49,5 +49,5 @@ Feature: Get service badges
|
|
|
49
49
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
50
50
|
Then the output should contain:
|
|
51
51
|
"""
|
|
52
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
52
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
53
53
|
"""
|
data/features/size.feature
CHANGED
|
@@ -8,12 +8,11 @@ Scenario: Include 'size' badge
|
|
|
8
8
|
When I successfully run `badger badge --size /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
12
|
-
[](https://gemnasium.com/doge/wow)
|
|
13
|
-
[](https://coveralls.io/r/doge/wow)
|
|
14
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
-
[](https://rubygems.org/gems/suchgem)
|
|
17
|
-
[](http://doge.mit-license.org)
|
|
18
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://github.com/doge/wow)
|
|
16
|
+
[](https://rubygems.org/gems/suchgem)
|
|
17
|
+
[](http://doge.mit-license.org)
|
|
19
18
|
"""
|
data/features/ssh-remote.feature
CHANGED
|
@@ -8,18 +8,17 @@ Feature: Badge robot
|
|
|
8
8
|
When I successfully run `badger badge /tmp/wow_repo`
|
|
9
9
|
Then the output should contain:
|
|
10
10
|
"""
|
|
11
|
-
[](https://travis-ci.org/doge/wow)
|
|
12
|
-
[](https://gemnasium.com/doge/wow)
|
|
13
|
-
[](https://coveralls.io/r/doge/wow)
|
|
14
|
-
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
-
[](https://rubygems.org/gems/suchgem)
|
|
16
|
-
[](http://doge.mit-license.org)
|
|
17
|
-
[](https://github.com/badges/badgerbadgerbadger)
|
|
11
|
+
[](https://travis-ci.org/doge/wow)
|
|
12
|
+
[](https://gemnasium.com/doge/wow)
|
|
13
|
+
[](https://coveralls.io/r/doge/wow)
|
|
14
|
+
[](https://codeclimate.com/github/doge/wow)
|
|
15
|
+
[](https://rubygems.org/gems/suchgem)
|
|
16
|
+
[](http://doge.mit-license.org)
|
|
18
17
|
"""
|
|
19
18
|
And the output should not contain:
|
|
20
19
|
"""
|
|
21
|
-
[](http://doge.mit-license.org)
|
|
22
|
-
[](http://doge.mit-license.org)
|
|
20
|
+
[](http://doge.mit-license.org)
|
|
21
|
+
[](http://doge.mit-license.org)
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
24
|
Scenario: handle a non-git-repo gracefully
|
|
@@ -37,4 +36,4 @@ Run this from inside a git repo
|
|
|
37
36
|
"""
|
|
38
37
|
This repo does not appear to have a github remote
|
|
39
38
|
"""
|
|
40
|
-
And the exit status should be 2
|
|
39
|
+
And the exit status should be 2
|
data/lib/badger/badge.rb
CHANGED
data/lib/badger/cli.rb
CHANGED
|
@@ -15,7 +15,7 @@ module Badger
|
|
|
15
15
|
method_option :png, :type => :boolean, :default => false, :desc => 'Generate PNG badges instead of the default SVG (because sometimes Github does caching things)'
|
|
16
16
|
method_option :pulls, :type => :boolean, :default => false, :desc => 'Generate Github pull-request and issue-count badges'
|
|
17
17
|
method_option :size, :type => :boolean, :default => false, :desc => 'Generate repo size badge'
|
|
18
|
-
method_option :style, :type => :string, :default =>
|
|
18
|
+
method_option :style, :type => :string, :default => 'flat-square', :desc => "Choose a different badge style (currently supported: #{Config.instance.config['valid_styles'].join ', '})"
|
|
19
19
|
|
|
20
20
|
def badge dir = '.'
|
|
21
21
|
@badger = Badger.new Badger.git_remote dir
|
|
@@ -47,7 +47,7 @@ module Badger
|
|
|
47
47
|
@badger.license license_type
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
# @badger.bonus
|
|
51
51
|
puts @badger.to_s
|
|
52
52
|
end
|
|
53
53
|
|
data/lib/badger/version.rb
CHANGED
data/spec/size_spec.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Badger
|
|
|
13
13
|
context 'size badge' do
|
|
14
14
|
it 'has a size badge' do
|
|
15
15
|
@badger.add 'size'
|
|
16
|
-
expect(@badger[0]).to eq '[.to eq '[](https://github.com/doge/wow)'
|
|
17
17
|
end
|
|
18
18
|
end
|
|
19
19
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: badgerbadgerbadger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- pikesley
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -275,7 +275,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
275
275
|
version: '0'
|
|
276
276
|
requirements: []
|
|
277
277
|
rubyforge_project:
|
|
278
|
-
rubygems_version: 2.
|
|
278
|
+
rubygems_version: 2.5.1
|
|
279
279
|
signing_key:
|
|
280
280
|
specification_version: 4
|
|
281
281
|
summary: Badge-Driven Development made easy. Generate a set of Github badges for your
|