diff options
author | Hans de Graaff <graaff@gentoo.org> | 2023-03-27 19:33:43 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2023-03-27 19:33:56 +0200 |
commit | a27b21d202dbe8077296338ddbb7e5ad366b6506 (patch) | |
tree | b0b4217000048e9b39ce17770f53e8d59e600091 /dev-ruby/gh | |
parent | dev-ruby/propshaft: drop 0.6.1 (diff) | |
download | gentoo-a27b21d202dbe8077296338ddbb7e5ad366b6506.tar.gz gentoo-a27b21d202dbe8077296338ddbb7e5ad366b6506.tar.bz2 gentoo-a27b21d202dbe8077296338ddbb7e5ad366b6506.zip |
dev-ruby/gh: add missing patch
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/gh')
-rw-r--r-- | dev-ruby/gh/files/gh-0.18.0-ruby30.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-ruby/gh/files/gh-0.18.0-ruby30.patch b/dev-ruby/gh/files/gh-0.18.0-ruby30.patch new file mode 100644 index 000000000000..cdd4aba84d59 --- /dev/null +++ b/dev-ruby/gh/files/gh-0.18.0-ruby30.patch @@ -0,0 +1,20 @@ +--- a/spec/token_check_spec.rb 2020-06-25 16:44:11.000000000 +0200 ++++ b/spec/token_check_spec.rb 2023-03-27 16:20:56.781510771 +0200 +@@ -8,7 +8,7 @@ + end + + it 'adds client_id and client_secret to a request' do +- expect(subject.backend).to receive(:http).with(:post, "/applications/foo/token", :body => "{\"access_token\": \"baz\"}", "Authorization" => "Basic Zm9vOmJhcg==") do ++ expect(subject.backend).to receive(:http).with(:post, "/applications/foo/token", { :body => "{\"access_token\": \"baz\"}", "Authorization" => "Basic Zm9vOmJhcg==" }) do + error = GH::Error.new + error.info[:response_status] = 404 + raise error +@@ -17,7 +17,7 @@ + end + + it 'does not swallow other status codes' do +- expect(subject.backend).to receive(:http).with(:post, "/applications/foo/token", :body => "{\"access_token\": \"baz\"}", "Authorization" => "Basic Zm9vOmJhcg==") do ++ expect(subject.backend).to receive(:http).with(:post, "/applications/foo/token", { :body => "{\"access_token\": \"baz\"}", "Authorization" => "Basic Zm9vOmJhcg==" }) do + error = GH::Error.new + error.info[:response_status] = 500 + raise error |