badgerbadgerbadger 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bd4e6bb6ef2b872d02c42d57fd2293cfac600711
4
- data.tar.gz: 9a41cb98a9b7448ed67ed74c784b45f238895999
3
+ metadata.gz: bbd62a6fc57354d6db0b17d6a13558b59775b511
4
+ data.tar.gz: 725aefc31743191a02d1d194ca47c110b08a28f4
5
5
  SHA512:
6
- metadata.gz: c93730ce55a0d14e135a1bb362e1be48f58d5e1a0555448c2f44b80a879366998c0fdc9f7ac7c713cbdfcd0ae6baddc5a5652f253a940ea3442f304781ac791a
7
- data.tar.gz: 85cc78b78c3dd2ba76ebcb9c98e69e519b428de30e487bb155f5c59d43711f50e6b5ef4798ed882d7626e6e301c869ac9fa8b7630680612cf03193a4fe034037
6
+ metadata.gz: 9e5f8424ccbd01385669ceeb1f76d61975cc429b42cff377bf5a8d431e12fe5fa43964e0b9f3af63e33f0083d8149e6dec29cf4f07813bae478c9e868e22f7cc
7
+ data.tar.gz: 1fefd4d697d24ba60f6536d2f3cb177fab180d287b65d54796f5cb88a27e37960dd5a77e5b210a01782ebf34930d88383dddd0a66678a340cbad89de7553404b
data/.travis.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.0
3
+ - 2.1.2
4
4
  deploy:
5
5
  provider: rubygems
6
6
  api_key:
@@ -11,3 +11,5 @@ deploy:
11
11
  repo: badges/badgerbadgerbadger
12
12
  tags: true
13
13
  all_branches: true
14
+ git:
15
+ depth: 10
data/DESC.md CHANGED
@@ -24,4 +24,6 @@ And if a license file is found, a License Badge will be generated. Currently sup
24
24
 
25
25
  * GPL-3
26
26
 
27
- The supported license details are in `https://github.com/badges/badgerbadgerbadger/blob/master/config/licenses.yaml`, if you're using a different license, send a PR! And if your gemspec license conflicts with your LICENSE file, you should probably fix that.
27
+ The supported license details are in `https://github.com/badges/badgerbadgerbadger/blob/master/config/licenses.yaml`, if you're using a different license, send a PR! And if your gemspec license conflicts with your LICENSE file, you should probably fix that.
28
+
29
+ Use the `--pulls` flag to add badges for open Github issues and pull-requests.
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- ruby '2.1.0'
3
+ #ruby '2.1.2'
4
4
  #ruby-gemset=badger
5
5
 
6
6
  # Specify your gem's dependencies in badger.gemspec
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- [![Build Status](http://img.shields.io/travis/badges/badgerbadgerbadger.svg)](https://travis-ci.org/badges/badgerbadgerbadger)
1
+ [![Stories in Ready](https://badge.waffle.io/badges/badgerbadgerbadger.png?label=ready&title=Ready)](https://waffle.io/badges/badgerbadgerbadger)
2
+ [![Build Status](https://travis-ci.org/badges/badgerbadgerbadger.svg)](https://travis-ci.org/badges/badgerbadgerbadger)
2
3
  [![Dependency Status](http://img.shields.io/gemnasium/badges/badgerbadgerbadger.svg)](https://gemnasium.com/badges/badgerbadgerbadger)
3
4
  [![Coverage Status](http://img.shields.io/coveralls/badges/badgerbadgerbadger.svg)](https://coveralls.io/r/badges/badgerbadgerbadger)
4
5
  [![Code Climate](http://img.shields.io/codeclimate/github/badges/badgerbadgerbadger.svg)](https://codeclimate.com/github/badges/badgerbadgerbadger)
@@ -24,13 +25,13 @@ or add it to your Gemfile
24
25
  Then
25
26
 
26
27
  badger badge
27
- [![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)
28
+ [![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)
28
29
  [![Dependency Status](http://img.shields.io/gemnasium/doge/wow.svg)](https://gemnasium.com/doge/wow)
29
30
  [![Coverage Status](http://img.shields.io/coveralls/doge/wow.svg)](https://coveralls.io/r/doge/wow)
30
31
  [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.svg)](https://codeclimate.com/github/doge/wow)
31
32
  [![Gem Version](http://img.shields.io/gem/v/suchgem.svg)](https://rubygems.org/gems/suchgem)
32
33
  [![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
33
- [![Badges](http://img.shields.io/:badges-7/7-ff6799.svg)](http://img.shields.io)
34
+ [![Badges](http://img.shields.io/:badges-7/7-ff6799.svg)](https://github.com/badges/badgerbadgerbadger)
34
35
 
35
36
  ready to paste into the top of your README (with the correct URLs for your repo)
36
37
 
data/badger.gemspec CHANGED
@@ -22,8 +22,7 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  spec.add_development_dependency 'bundler', '~> 1.5'
24
24
  spec.add_development_dependency 'rake', '~> 10.1'
25
- spec.add_development_dependency 'rspec', '~> 2.14'
26
- spec.add_development_dependency 'rspec-pride', '~> 2.3'
25
+ spec.add_development_dependency 'rspec', '~> 3'
27
26
  spec.add_development_dependency 'cucumber', '~> 1.3'
28
27
  spec.add_development_dependency 'aruba', '~> 0.5'
29
28
  spec.add_development_dependency 'guard', '~> 2.3'
data/config/services.yaml CHANGED
@@ -2,7 +2,7 @@ travis:
2
2
  alt_text: Build Status
3
3
  scheme: https
4
4
  url_path: travis-ci.org
5
- offers_svg: true
5
+ badge_slug: travis
6
6
 
7
7
  coveralls:
8
8
  alt_text: Coverage Status
@@ -8,7 +8,7 @@ Feature: Badge robot
8
8
  When I successfully run `badger badge /tmp/wow_repo`
9
9
  Then the output should contain:
10
10
  """
11
- [![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)
11
+ [![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)
12
12
  [![Dependency Status](http://img.shields.io/gemnasium/doge/wow.svg)](https://gemnasium.com/doge/wow)
13
13
  [![Coverage Status](http://img.shields.io/coveralls/doge/wow.svg)](https://coveralls.io/r/doge/wow)
14
14
  [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.svg)](https://codeclimate.com/github/doge/wow)
data/features/png.feature CHANGED
@@ -8,7 +8,7 @@ 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
- [![Build Status](https://travis-ci.org/doge/wow.png)](https://travis-ci.org/doge/wow)
11
+ [![Build Status](http://img.shields.io/travis/doge/wow.png)](https://travis-ci.org/doge/wow)
12
12
  [![Dependency Status](http://img.shields.io/gemnasium/doge/wow.png)](https://gemnasium.com/doge/wow)
13
13
  [![Coverage Status](http://img.shields.io/coveralls/doge/wow.png)](https://coveralls.io/r/doge/wow)
14
14
  [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.png)](https://codeclimate.com/github/doge/wow)
@@ -0,0 +1,20 @@
1
+ Feature: Github issues and PRs
2
+
3
+ Background:
4
+ Given git remote is "https://github.com/doge/wow"
5
+
6
+ @travis @gemnasium @coveralls @gemspec @mit
7
+ Scenario: One with everything
8
+ When I successfully run `badger badge --pulls /tmp/wow_repo`
9
+ Then the output should contain:
10
+ """
11
+ [![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)
12
+ [![Dependency Status](http://img.shields.io/gemnasium/doge/wow.svg)](https://gemnasium.com/doge/wow)
13
+ [![Coverage Status](http://img.shields.io/coveralls/doge/wow.svg)](https://coveralls.io/r/doge/wow)
14
+ [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.svg)](https://codeclimate.com/github/doge/wow)
15
+ [![Github Issues](http://githubbadges.herokuapp.com/doge/wow/issues.svg)](https://github.com/doge/wow/issues)
16
+ [![Pending Pull-Requests](http://githubbadges.herokuapp.com/doge/wow/pulls.svg)](https://github.com/doge/wow/pulls)
17
+ [![Gem Version](http://img.shields.io/gem/v/suchgem.svg)](https://rubygems.org/gems/suchgem)
18
+ [![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
19
+ [![Badges](http://img.shields.io/:badges-9/9-ff6799.svg)](https://github.com/badges/badgerbadgerbadger)
20
+ """
@@ -8,7 +8,7 @@ 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
- [![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)
11
+ [![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)
12
12
  """
13
13
  And the output should not contain:
14
14
  """
@@ -50,4 +50,4 @@ Feature: Get service badges
50
50
  Then the output should contain:
51
51
  """
52
52
  [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.svg)](https://codeclimate.com/github/doge/wow)
53
- """
53
+ """
@@ -8,7 +8,7 @@ Feature: Badge robot
8
8
  When I successfully run `badger badge /tmp/wow_repo`
9
9
  Then the output should contain:
10
10
  """
11
- [![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)
11
+ [![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)
12
12
  [![Dependency Status](http://img.shields.io/gemnasium/doge/wow.svg)](https://gemnasium.com/doge/wow)
13
13
  [![Coverage Status](http://img.shields.io/coveralls/doge/wow.svg)](https://coveralls.io/r/doge/wow)
14
14
  [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.svg)](https://codeclimate.com/github/doge/wow)
@@ -1,5 +1,4 @@
1
1
  require 'aruba/cucumber'
2
- require 'cucumber/rspec/doubles'
3
2
  require 'git'
4
3
  require 'fileutils'
5
4
  require 'coveralls'
data/lib/badger/badger.rb CHANGED
@@ -15,7 +15,13 @@ module Badger
15
15
  end
16
16
 
17
17
  def add service
18
- self << Service.badge(service, github_slug)
18
+ if service == 'issues'
19
+ self << Badger.badge('Github Issues', "http://githubbadges.herokuapp.com/#{github_slug}/issues", "https://github.com/#{github_slug}/issues")
20
+ elsif service == 'pulls'
21
+ self << Badger.badge('Pending Pull-Requests', "http://githubbadges.herokuapp.com/#{github_slug}/pulls", "https://github.com/#{github_slug}/pulls")
22
+ else
23
+ self << Service.badge(service, github_slug)
24
+ end
19
25
  self.delete nil
20
26
  end
21
27
 
@@ -49,4 +55,4 @@ module Badger
49
55
  s
50
56
  end
51
57
  end
52
- end
58
+ end
data/lib/badger/cli.rb CHANGED
@@ -13,6 +13,7 @@ module Badger
13
13
  desc 'badge', 'Generate badge markdown'
14
14
  long_desc File.read File.join File.dirname( __FILE__), '..', '..', 'DESC.md'
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
+ method_option :pulls, :type => :boolean, :default => false, :desc => 'Generate Github pull-request and issue-count badges'
16
17
 
17
18
  def badge dir = '.'
18
19
  @badger = Badger.new Badger.git_remote dir
@@ -24,6 +25,9 @@ module Badger
24
25
  @badger.add 'coveralls' if Badger.has_coveralls? dir
25
26
  @badger.add 'codeclimate' if @badger.any?
26
27
 
28
+ @badger.add 'issues' if options[:pulls]
29
+ @badger.add 'pulls' if options[:pulls]
30
+
27
31
  if gemspec_params = Badger.search_gemspec(dir)
28
32
  @badger.rubygem gemspec_params[:rubygem]
29
33
  if gemspec_params[:licenses]
@@ -43,4 +47,4 @@ module Badger
43
47
 
44
48
  default_task :badge
45
49
  end
46
- end
50
+ end
@@ -1,3 +1,3 @@
1
1
  module Badger
2
- VERSION = "0.9.0"
2
+ VERSION = "0.10.0"
3
3
  end
data/spec/badger_spec.rb CHANGED
@@ -12,83 +12,83 @@ module Badger
12
12
 
13
13
  context 'initialisation' do
14
14
  it 'should have no badges by default' do
15
- @badger.length.should == 0
15
+ expect(@badger.length).to eq 0
16
16
  end
17
17
  end
18
18
 
19
19
  context 'get the user and repo' do
20
20
  it 'extracts from an https url' do
21
- @badger.github_slug.should eql('doge/wow')
21
+ expect(@badger.github_slug).to eq ('doge/wow')
22
22
  end
23
23
 
24
24
  it 'extracts the owner' do
25
- @badger.owner.should eql 'doge'
25
+ expect(@badger.owner).to eq 'doge'
26
26
  end
27
27
 
28
28
  it 'extracts from an ssh url' do
29
29
  @badger = Badger.new "git@github.com:doge/wow.git"
30
- @badger.github_slug.should eql('doge/wow')
30
+ expect(@badger.github_slug).to eq ('doge/wow')
31
31
  end
32
32
 
33
33
  it 'knows that sometimes an https url has a .git suffix because REASONS' do
34
34
  @badger = Badger.new "https://github.com/doge/wow.git"
35
- @badger.github_slug.should eql('doge/wow')
35
+ expect(@badger.github_slug).to eq ('doge/wow')
36
36
  end
37
37
  end
38
38
 
39
39
  context 'service badges' do
40
40
  it 'should have a travis badge' do
41
41
  @badger.add 'travis'
42
- @badger[0].should == "[![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)"
42
+ expect(@badger[0]).to eq "[![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)"
43
43
  end
44
44
 
45
45
  it 'should have a travis badge and a gemnasium badge' do
46
46
  @badger.add 'travis'
47
47
  @badger.add 'gemnasium'
48
- @badger[0].should == "[![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)"
49
- @badger[1].should == "[![Dependency Status](http://img.shields.io/gemnasium/doge/wow.svg)](https://gemnasium.com/doge/wow)"
50
- @badger.length.should == 2
48
+ expect(@badger[0]).to eq "[![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)"
49
+ expect(@badger[1]).to eq "[![Dependency Status](http://img.shields.io/gemnasium/doge/wow.svg)](https://gemnasium.com/doge/wow)"
50
+ expect(@badger.length).to eq 2
51
51
  end
52
52
 
53
53
  it 'should handle an unknown service gracefully' do
54
54
  @badger.add 'doge-service'
55
- @badger.length.should == 0
55
+ expect(@badger.length).to eq 0
56
56
  end
57
57
  end
58
58
 
59
59
  context 'licenses' do
60
60
  it 'should generate an MIT badge' do
61
61
  @badger.license 'mit'
62
- @badger[0].should == "[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)"
62
+ expect(@badger[0]).to eq "[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)"
63
63
  end
64
64
 
65
65
  it 'should generate an Apache badge' do
66
66
  @badger.license 'apache'
67
- @badger[0].should == "[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)"
67
+ expect(@badger[0]).to eq "[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)"
68
68
  end
69
69
 
70
70
  it 'should generate a GPL3 badge' do
71
71
  @badger.license 'gpl-3.0'
72
- @badger[0].should == "[![License](http://img.shields.io/:license-gpl3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0.html)"
72
+ expect(@badger[0]).to eq "[![License](http://img.shields.io/:license-gpl3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0.html)"
73
73
  end
74
74
 
75
75
  it 'should be fine with multiple licenses' do
76
76
  @badger.license 'mit'
77
77
  @badger.license 'apache'
78
- @badger[0].should == "[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)"
79
- @badger[1].should == "[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)"
78
+ expect(@badger[0]).to eq "[![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)"
79
+ expect(@badger[1]).to eq "[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)"
80
80
  end
81
81
 
82
82
  it 'should generate nothing for an unknown license' do
83
83
  @badger.license 'doge-license'
84
- @badger.length.should == 0
84
+ expect(@badger.length).to eq 0
85
85
  end
86
86
  end
87
87
 
88
88
  context 'rubygems' do
89
89
  it 'should have a rubygems badge' do
90
90
  @badger.rubygem 'suchgem'
91
- @badger[0].should == "[![Gem Version](http://img.shields.io/gem/v/suchgem.svg)](https://rubygems.org/gems/suchgem)"
91
+ expect(@badger[0]).to eq "[![Gem Version](http://img.shields.io/gem/v/suchgem.svg)](https://rubygems.org/gems/suchgem)"
92
92
  end
93
93
  end
94
94
 
@@ -97,7 +97,7 @@ module Badger
97
97
  @badger.add 'travis'
98
98
  @badger.add 'coveralls'
99
99
  @badger.bonus
100
- @badger[2].should == "[![Badges](http://img.shields.io/:badges-3/3-ff6799.svg)](https://github.com/badges/badgerbadgerbadger)"
100
+ expect(@badger[2]).to eq "[![Badges](http://img.shields.io/:badges-3/3-ff6799.svg)](https://github.com/badges/badgerbadgerbadger)"
101
101
  end
102
102
  end
103
103
 
@@ -106,24 +106,25 @@ module Badger
106
106
  @badger.add 'travis'
107
107
  @badger.add 'codeclimate'
108
108
  @badger.license 'mit'
109
- @badger.to_s.should ==
110
- %{[![Build Status](https://travis-ci.org/doge/wow.svg)](https://travis-ci.org/doge/wow)
109
+ expect(@badger.to_s).to eq(
110
+ %{[![Build Status](http://img.shields.io/travis/doge/wow.svg)](https://travis-ci.org/doge/wow)
111
111
  [![Code Climate](http://img.shields.io/codeclimate/github/doge/wow.svg)](https://codeclimate.com/github/doge/wow)
112
112
  [![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
113
113
  }
114
+ )
114
115
  end
115
116
  end
116
117
 
117
118
  it 'should work with a "-" in the remote name' do
118
119
  @badger = Badger.new 'https://github.com/pikesley/diabetes-dashboard.git'
119
120
  @badger.add 'travis'
120
- @badger[0].should == '[![Build Status](https://travis-ci.org/pikesley/diabetes-dashboard.svg)](https://travis-ci.org/pikesley/diabetes-dashboard)'
121
+ expect(@badger[0]).to eq '[![Build Status](http://img.shields.io/travis/pikesley/diabetes-dashboard.svg)](https://travis-ci.org/pikesley/diabetes-dashboard)'
121
122
  end
122
123
 
123
124
  it 'should let me choose a different badge type' do
124
125
  @badger.badge_type 'png'
125
126
  @badger.add 'travis'
126
- @badger[0].should == '[![Build Status](https://travis-ci.org/doge/wow.png)](https://travis-ci.org/doge/wow)'
127
+ expect(@badger[0]).to eq '[![Build Status](http://img.shields.io/travis/doge/wow.png)](https://travis-ci.org/doge/wow)'
127
128
  end
128
129
  end
129
- end
130
+ end
data/spec/spec_helper.rb CHANGED
@@ -10,10 +10,9 @@ Coveralls.wear_merged!
10
10
  #
11
11
  # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
12
12
  RSpec.configure do |config|
13
- config.treat_symbols_as_metadata_keys_with_true_values = true
14
13
  config.run_all_when_everything_filtered = true
15
14
  config.filter_run :focus
16
- config.fail_fast = true
15
+ # config.fail_fast = true
17
16
 
18
17
  # Run specs in random order to surface order dependencies. If you find an
19
18
  # order dependency and want to debug it, you can fix the order by providing
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.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - pikesley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-21 00:00:00.000000000 Z
11
+ date: 2014-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -72,28 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '2.14'
75
+ version: '3'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '2.14'
83
- - !ruby/object:Gem::Dependency
84
- name: rspec-pride
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '2.3'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '2.3'
82
+ version: '3'
97
83
  - !ruby/object:Gem::Dependency
98
84
  name: cucumber
99
85
  requirement: !ruby/object:Gem::Requirement
@@ -231,6 +217,7 @@ files:
231
217
  - features/badger.feature
232
218
  - features/licenses.feature
233
219
  - features/png.feature
220
+ - features/pulls-and-issues.feature
234
221
  - features/rubygems.feature
235
222
  - features/services.feature
236
223
  - features/ssh-remote.feature
@@ -278,7 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
278
265
  version: '0'
279
266
  requirements: []
280
267
  rubyforge_project:
281
- rubygems_version: 2.2.0.rc.1
268
+ rubygems_version: 2.4.3
282
269
  signing_key:
283
270
  specification_version: 4
284
271
  summary: Badge-Driven Development made easy. Generate a set of Github badges for your
@@ -287,6 +274,7 @@ test_files:
287
274
  - features/badger.feature
288
275
  - features/licenses.feature
289
276
  - features/png.feature
277
+ - features/pulls-and-issues.feature
290
278
  - features/rubygems.feature
291
279
  - features/services.feature
292
280
  - features/ssh-remote.feature