Skip to content

Commit 536fbb7

Browse files
authored
Merge pull request #21 from github/bump-gems
Bump Gems
2 parents bf97268 + e6f87ca commit 536fbb7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+26
-24
lines changed

Gemfile.lock

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
entitlements-github-plugin (0.3.0)
4+
entitlements-github-plugin (0.4.0)
55
contracts (= 0.17.0)
66
faraday (~> 2.0)
77
faraday-retry (~> 2.0)
@@ -10,12 +10,12 @@ PATH
1010
GEM
1111
remote: https://rubygems.org/
1212
specs:
13-
activesupport (7.0.3.1)
13+
activesupport (7.0.7.2)
1414
concurrent-ruby (~> 1.0, >= 1.0.2)
1515
i18n (>= 1.6, < 2)
1616
minitest (>= 5.1)
1717
tzinfo (~> 2.0)
18-
addressable (2.8.1)
18+
addressable (2.8.5)
1919
public_suffix (>= 2.0.2, < 6.0)
2020
ast (2.4.2)
2121
concurrent-ruby (1.1.9)
@@ -30,31 +30,33 @@ GEM
3030
net-ldap (~> 0.17)
3131
octokit (~> 4.18)
3232
optimist (= 3.0.0)
33-
faraday (2.5.2)
33+
faraday (2.7.10)
3434
faraday-net_http (>= 2.0, < 3.1)
3535
ruby2_keywords (>= 0.0.4)
36-
faraday-net_http (3.0.0)
37-
faraday-retry (2.0.0)
36+
faraday-net_http (3.0.2)
37+
faraday-retry (2.2.0)
3838
faraday (~> 2.0)
3939
hashdiff (1.0.1)
40-
i18n (1.12.0)
40+
i18n (1.14.1)
4141
concurrent-ruby (~> 1.0)
42-
json (2.6.2)
43-
minitest (5.16.3)
44-
net-ldap (0.17.1)
42+
json (2.6.3)
43+
minitest (5.19.0)
44+
net-ldap (0.18.0)
4545
octokit (4.25.1)
4646
faraday (>= 1, < 3)
4747
sawyer (~> 0.9)
4848
optimist (3.0.0)
49-
parallel (1.22.1)
50-
parser (3.1.2.1)
49+
parallel (1.23.0)
50+
parser (3.2.2.3)
5151
ast (~> 2.4.1)
52-
public_suffix (5.0.0)
53-
rack (2.2.4)
52+
racc
53+
public_suffix (5.0.3)
54+
racc (1.7.1)
55+
rack (3.0.8)
5456
rainbow (3.1.1)
5557
rake (13.0.6)
56-
regexp_parser (2.5.0)
57-
rexml (3.2.5)
58+
regexp_parser (2.8.1)
59+
rexml (3.2.6)
5860
rspec (3.8.0)
5961
rspec-core (~> 3.8.0)
6062
rspec-expectations (~> 3.8.0)
@@ -77,8 +79,8 @@ GEM
7779
rubocop-ast (>= 1.17.0, < 2.0)
7880
ruby-progressbar (~> 1.7)
7981
unicode-display_width (>= 1.4.0, < 3.0)
80-
rubocop-ast (1.21.0)
81-
parser (>= 3.1.1.0)
82+
rubocop-ast (1.29.0)
83+
parser (>= 3.2.1.0)
8284
rubocop-github (0.17.0)
8385
rubocop
8486
rubocop-performance
@@ -90,7 +92,7 @@ GEM
9092
activesupport (>= 4.2.0)
9193
rack (>= 1.1)
9294
rubocop (>= 1.7.0, < 2.0)
93-
ruby-progressbar (1.11.0)
95+
ruby-progressbar (1.13.0)
9496
ruby2_keywords (0.0.5)
9597
rugged (0.27.5)
9698
sawyer (0.9.2)
@@ -103,9 +105,9 @@ GEM
103105
simplecov-erb (1.0.1)
104106
simplecov (< 1.0)
105107
simplecov-html (0.10.2)
106-
tzinfo (2.0.5)
108+
tzinfo (2.0.6)
107109
concurrent-ruby (~> 1.0)
108-
unicode-display_width (2.2.0)
110+
unicode-display_width (2.4.2)
109111
vcr (4.0.0)
110112
webmock (3.4.2)
111113
addressable (>= 2.3.6)

README.md

Lines changed: 1 addition & 1 deletion

lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Entitlements
44
module Version
5-
VERSION = "0.3.0"
5+
VERSION = "0.4.0"
66
end
77
end

spec/unit/entitlements/service/github_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
it "logs and returns raw text for JSON parsing error" do
339339
answer = "mor chicken mor rewardz!"
340340
stub_request(:post, "https://github.fake/api/v3/graphql").to_return(status: 200, body: answer)
341-
expect(logger).to receive(:error).with(/JSON::ParserError \d+: unexpected token at 'mor chicken mor rewardz!': \"mor chicken mor rewardz!\"/)
341+
expect(logger).to receive(:error).with("JSON::ParserError unexpected token at 'mor chicken mor rewardz!': \"mor chicken mor rewardz!\"")
342342
response = subject.send(:graphql_http_post_real, "nonsense")
343343
expect(response).to eq(code: 500, data: { "body" => "mor chicken mor rewardz!" })
344344
end
-218 KB
Binary file not shown.
221 KB
Binary file not shown.

vendor/cache/addressable-2.8.1.gem

-104 KB
Binary file not shown.

vendor/cache/addressable-2.8.5.gem

104 KB
Binary file not shown.

vendor/cache/faraday-2.5.2.gem

-67 KB
Binary file not shown.

vendor/cache/faraday-2.7.10.gem

68.5 KB
Binary file not shown.
-8 KB
Binary file not shown.
8 KB
Binary file not shown.

vendor/cache/faraday-retry-2.0.0.gem

-10.5 KB
Binary file not shown.

vendor/cache/faraday-retry-2.2.0.gem

11 KB
Binary file not shown.

vendor/cache/i18n-1.12.0.gem

-43.5 KB
Binary file not shown.

vendor/cache/i18n-1.14.1.gem

45 KB
Binary file not shown.

vendor/cache/json-2.6.2.gem

-65.5 KB
Binary file not shown.

vendor/cache/json-2.6.3.gem

65.5 KB
Binary file not shown.

vendor/cache/minitest-5.16.3.gem

-91 KB
Binary file not shown.

vendor/cache/minitest-5.19.0.gem

93.5 KB
Binary file not shown.

vendor/cache/net-ldap-0.17.1.gem

-65.5 KB
Binary file not shown.

vendor/cache/net-ldap-0.18.0.gem

65.5 KB
Binary file not shown.

vendor/cache/parallel-1.22.1.gem

-10 KB
Binary file not shown.

vendor/cache/parallel-1.23.0.gem

10 KB
Binary file not shown.

vendor/cache/parser-3.1.2.1.gem

-709 KB
Binary file not shown.

vendor/cache/parser-3.2.2.3.gem

879 KB
Binary file not shown.

vendor/cache/public_suffix-5.0.0.gem

-112 KB
Binary file not shown.

vendor/cache/public_suffix-5.0.3.gem

111 KB
Binary file not shown.

vendor/cache/racc-1.7.1.gem

68 KB
Binary file not shown.

vendor/cache/rack-2.2.4.gem

-148 KB
Binary file not shown.

vendor/cache/rack-3.0.8.gem

106 KB
Binary file not shown.

vendor/cache/regexp_parser-2.5.0.gem

-69.5 KB
Binary file not shown.

vendor/cache/regexp_parser-2.8.1.gem

72.5 KB
Binary file not shown.

vendor/cache/rexml-3.2.5.gem

-91 KB
Binary file not shown.

vendor/cache/rexml-3.2.6.gem

100 KB
Binary file not shown.

vendor/cache/rubocop-ast-1.21.0.gem

-55.5 KB
Binary file not shown.

vendor/cache/rubocop-ast-1.29.0.gem

56 KB
Binary file not shown.
-18 KB
Binary file not shown.
19 KB
Binary file not shown.

vendor/cache/tzinfo-2.0.5.gem

-77.5 KB
Binary file not shown.

vendor/cache/tzinfo-2.0.6.gem

77.5 KB
Binary file not shown.
-12 KB
Binary file not shown.
13 KB
Binary file not shown.

0 commit comments

Comments
 (0)