ghub 0.20.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/ghub.gemspec +7 -7
- data/lib/ghub/api/client.rb +1 -1
- data/lib/ghub/client.rb +3 -3
- data/lib/ghub/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/branches/protection/actions/show.rb +2 -2
- data/lib/ghub/endpoints/branches/protection/actions/update.rb +2 -2
- data/lib/ghub/endpoints/branches/protection/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/branches/protection/root.rb +2 -2
- data/lib/ghub/endpoints/branches/signature/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/branches/signature/root.rb +2 -2
- data/lib/ghub/endpoints/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/organizations/members/actions/index.rb +2 -2
- data/lib/ghub/endpoints/organizations/members/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/organizations/members/root.rb +1 -1
- data/lib/ghub/endpoints/pulls/actions/index.rb +2 -2
- data/lib/ghub/endpoints/pulls/actions/show.rb +2 -2
- data/lib/ghub/endpoints/pulls/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/pulls/root.rb +1 -1
- data/lib/ghub/endpoints/repositories/actions/create.rb +2 -2
- data/lib/ghub/endpoints/repositories/actions/index.rb +2 -2
- data/lib/ghub/endpoints/repositories/actions/patch.rb +2 -2
- data/lib/ghub/endpoints/repositories/actions/show.rb +2 -2
- data/lib/ghub/endpoints/repositories/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/repositories/root.rb +2 -2
- data/lib/ghub/endpoints/search/users/actions/index.rb +2 -2
- data/lib/ghub/endpoints/search/users/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/search/users/root.rb +1 -1
- data/lib/ghub/endpoints/users/actions/index.rb +2 -2
- data/lib/ghub/endpoints/users/actions/show.rb +2 -2
- data/lib/ghub/endpoints/users/{import.rb → dependencies.rb} +1 -1
- data/lib/ghub/endpoints/users/root.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +23 -30
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34215a2aefab7ee93eef267b04b6558c538c2a38db27019925f2e72ed86be29d
|
4
|
+
data.tar.gz: fa1ffea203963c7bafab490b933d62c8115684f2b081b52955d3cfdece9174c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acc6d19b7578646468d8a1b4000f5765d8c5bf0d23f34f6ba0f3a07ec4dbabbc0129bf475225f1b9560c58779fe98ec220d61f931bc3e354281e8c778a7461d8
|
7
|
+
data.tar.gz: 2c7db1f07d1a5b1d8fc347f0bcd75f108b73120426e8bfcb2da5d9287716473578b2f0643d1b9fb31157c699840e82c8e57149324a3bb0795befe029f91a258b
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/ghub.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "ghub"
|
5
|
-
spec.version = "0.
|
5
|
+
spec.version = "0.22.0"
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
8
8
|
spec.homepage = "https://alchemists.io/projects/ghub"
|
@@ -22,14 +22,14 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.signing_key = Gem.default_key_path
|
23
23
|
spec.cert_chain = [Gem.default_cert_path]
|
24
24
|
|
25
|
-
spec.required_ruby_version = "
|
26
|
-
spec.add_dependency "containable", "~> 0
|
25
|
+
spec.required_ruby_version = "~> 3.4"
|
26
|
+
spec.add_dependency "containable", "~> 1.0"
|
27
27
|
spec.add_dependency "dry-monads", "~> 1.6"
|
28
28
|
spec.add_dependency "dry-schema", "~> 1.13"
|
29
|
-
spec.add_dependency "http", "~> 5.
|
30
|
-
spec.add_dependency "infusible", "~>
|
31
|
-
spec.add_dependency "pipeable", "~> 0
|
32
|
-
spec.add_dependency "refinements", "~>
|
29
|
+
spec.add_dependency "http", "~> 5.2"
|
30
|
+
spec.add_dependency "infusible", "~> 4.0"
|
31
|
+
spec.add_dependency "pipeable", "~> 1.0"
|
32
|
+
spec.add_dependency "refinements", "~> 13.0"
|
33
33
|
spec.add_dependency "zeitwerk", "~> 2.7"
|
34
34
|
|
35
35
|
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
|
data/lib/ghub/api/client.rb
CHANGED
data/lib/ghub/client.rb
CHANGED
@@ -3,7 +3,9 @@
|
|
3
3
|
module Ghub
|
4
4
|
# The primary interface for making API requests.
|
5
5
|
class Client
|
6
|
-
include
|
6
|
+
include Dependencies[:configuration]
|
7
|
+
|
8
|
+
include Endpoints::Dependencies.public(
|
7
9
|
:branch_protection,
|
8
10
|
:branch_signature,
|
9
11
|
:organization_members,
|
@@ -13,8 +15,6 @@ module Ghub
|
|
13
15
|
:users
|
14
16
|
)
|
15
17
|
|
16
|
-
include Import[:configuration]
|
17
|
-
|
18
18
|
def initialize(**)
|
19
19
|
super
|
20
20
|
yield configuration if block_given?
|
@@ -9,8 +9,8 @@ module Ghub
|
|
9
9
|
module Actions
|
10
10
|
# Handles a branch projection show action.
|
11
11
|
class Show
|
12
|
-
include Ghub::
|
13
|
-
include
|
12
|
+
include Ghub::Dependencies[:api]
|
13
|
+
include Dependencies[response: "responses.show", model: "models.show"]
|
14
14
|
include Pipeable
|
15
15
|
|
16
16
|
def call owner, repository, branch, **parameters
|
@@ -9,9 +9,9 @@ module Ghub
|
|
9
9
|
module Actions
|
10
10
|
# Handles a branch projection update action.
|
11
11
|
class Update
|
12
|
-
include Ghub::
|
12
|
+
include Ghub::Dependencies[:api]
|
13
13
|
|
14
|
-
include
|
14
|
+
include Dependencies[
|
15
15
|
request: "requests.update",
|
16
16
|
response: "responses.show",
|
17
17
|
model: "models.show"
|
@@ -6,8 +6,8 @@ module Ghub
|
|
6
6
|
module Protection
|
7
7
|
# Provides access to the branch protection API endpoint.
|
8
8
|
class Root
|
9
|
-
include Ghub::
|
10
|
-
include
|
9
|
+
include Ghub::Dependencies[:api]
|
10
|
+
include Dependencies[show_action: "actions.show", update_action: "actions.update"]
|
11
11
|
|
12
12
|
def show(...) = show_action.call(...)
|
13
13
|
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Signature
|
9
9
|
# Provides access to the branch signature API endpoint.
|
10
10
|
class Root
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[response: "responses.show", model: "models.show"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
PATH = "repos/%<owner>s/%<repository>s/branches/%<branch>s/protection/required_signatures"
|
@@ -9,8 +9,8 @@ module Ghub
|
|
9
9
|
module Actions
|
10
10
|
# Handles an organization member index action.
|
11
11
|
class Index
|
12
|
-
include Ghub::
|
13
|
-
include
|
12
|
+
include Ghub::Dependencies[:api]
|
13
|
+
include Dependencies[response: "responses.index", model: "models.show"]
|
14
14
|
include Pipeable
|
15
15
|
|
16
16
|
def call owner, **parameters
|
@@ -6,7 +6,7 @@ module Ghub
|
|
6
6
|
module Members
|
7
7
|
# Provides access to the organization members API endpoint.
|
8
8
|
class Root
|
9
|
-
include
|
9
|
+
include Dependencies[index_action: "actions.index"]
|
10
10
|
|
11
11
|
def index(...) = index_action.call(...)
|
12
12
|
end
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a repository index action.
|
10
10
|
class Index
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[response: "responses.index", model: "models.show"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
def call owner, repository, **parameters
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a repository index action.
|
10
10
|
class Show
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[response: "responses.show", model: "models.show"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
def call owner, repository, id, **parameters
|
@@ -5,7 +5,7 @@ module Ghub
|
|
5
5
|
module Pulls
|
6
6
|
# Provides access to the pulls API endpoint.
|
7
7
|
class Root
|
8
|
-
include
|
8
|
+
include Dependencies[index_action: "actions.index", show_action: "actions.show"]
|
9
9
|
|
10
10
|
def index(...) = index_action.call(...)
|
11
11
|
|
@@ -8,9 +8,9 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a repository create action.
|
10
10
|
class Create
|
11
|
-
include Ghub::
|
11
|
+
include Ghub::Dependencies[:api]
|
12
12
|
|
13
|
-
include
|
13
|
+
include Dependencies[
|
14
14
|
:path,
|
15
15
|
request: "requests.create",
|
16
16
|
response: "responses.show",
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a repository index action.
|
10
10
|
class Index
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[:path, response: "responses.index", model: "models.show"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
def call kind, owner, **parameters
|
@@ -8,9 +8,9 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a repository patch action.
|
10
10
|
class Patch
|
11
|
-
include Ghub::
|
11
|
+
include Ghub::Dependencies[:api]
|
12
12
|
|
13
|
-
include
|
13
|
+
include Dependencies[
|
14
14
|
:path,
|
15
15
|
request: "requests.patch",
|
16
16
|
response: "responses.show",
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a repository show action.
|
10
10
|
class Show
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[:path, response: "responses.show", model: "models.show"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
def call owner, id, **parameters
|
@@ -5,9 +5,9 @@ module Ghub
|
|
5
5
|
module Repositories
|
6
6
|
# Provides access to the users API endpoint.
|
7
7
|
class Root
|
8
|
-
include Ghub::
|
8
|
+
include Ghub::Dependencies[:api]
|
9
9
|
|
10
|
-
include
|
10
|
+
include Dependencies[
|
11
11
|
create_action: "actions.create",
|
12
12
|
index_action: "actions.index",
|
13
13
|
patch_action: "actions.patch",
|
@@ -9,8 +9,8 @@ module Ghub
|
|
9
9
|
module Actions
|
10
10
|
# Handles a user index action.
|
11
11
|
class Index
|
12
|
-
include Ghub::
|
13
|
-
include
|
12
|
+
include Ghub::Dependencies[:api]
|
13
|
+
include Dependencies[response: "responses.index", model: "models.index"]
|
14
14
|
include Pipeable
|
15
15
|
|
16
16
|
def call **parameters
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a user index action.
|
10
10
|
class Index
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[response: "responses.index", model: "models.index"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
def call **parameters
|
@@ -8,8 +8,8 @@ module Ghub
|
|
8
8
|
module Actions
|
9
9
|
# Handles a user show action.
|
10
10
|
class Show
|
11
|
-
include Ghub::
|
12
|
-
include
|
11
|
+
include Ghub::Dependencies[:api]
|
12
|
+
include Dependencies[response: "responses.show", model: "models.show"]
|
13
13
|
include Pipeable
|
14
14
|
|
15
15
|
def call id, **parameters
|
@@ -5,7 +5,7 @@ module Ghub
|
|
5
5
|
module Users
|
6
6
|
# Provides access to the users API endpoint.
|
7
7
|
class Root
|
8
|
-
include
|
8
|
+
include Dependencies[index_action: "actions.index", show_action: "actions.show"]
|
9
9
|
|
10
10
|
def index(...) = index_action.call(...)
|
11
11
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ghub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain:
|
11
10
|
- |
|
@@ -35,7 +34,7 @@ cert_chain:
|
|
35
34
|
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
36
35
|
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
37
36
|
-----END CERTIFICATE-----
|
38
|
-
date: 2024-
|
37
|
+
date: 2024-12-28 00:00:00.000000000 Z
|
39
38
|
dependencies:
|
40
39
|
- !ruby/object:Gem::Dependency
|
41
40
|
name: containable
|
@@ -43,14 +42,14 @@ dependencies:
|
|
43
42
|
requirements:
|
44
43
|
- - "~>"
|
45
44
|
- !ruby/object:Gem::Version
|
46
|
-
version: '0
|
45
|
+
version: '1.0'
|
47
46
|
type: :runtime
|
48
47
|
prerelease: false
|
49
48
|
version_requirements: !ruby/object:Gem::Requirement
|
50
49
|
requirements:
|
51
50
|
- - "~>"
|
52
51
|
- !ruby/object:Gem::Version
|
53
|
-
version: '0
|
52
|
+
version: '1.0'
|
54
53
|
- !ruby/object:Gem::Dependency
|
55
54
|
name: dry-monads
|
56
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -85,56 +84,56 @@ dependencies:
|
|
85
84
|
requirements:
|
86
85
|
- - "~>"
|
87
86
|
- !ruby/object:Gem::Version
|
88
|
-
version: '5.
|
87
|
+
version: '5.2'
|
89
88
|
type: :runtime
|
90
89
|
prerelease: false
|
91
90
|
version_requirements: !ruby/object:Gem::Requirement
|
92
91
|
requirements:
|
93
92
|
- - "~>"
|
94
93
|
- !ruby/object:Gem::Version
|
95
|
-
version: '5.
|
94
|
+
version: '5.2'
|
96
95
|
- !ruby/object:Gem::Dependency
|
97
96
|
name: infusible
|
98
97
|
requirement: !ruby/object:Gem::Requirement
|
99
98
|
requirements:
|
100
99
|
- - "~>"
|
101
100
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
101
|
+
version: '4.0'
|
103
102
|
type: :runtime
|
104
103
|
prerelease: false
|
105
104
|
version_requirements: !ruby/object:Gem::Requirement
|
106
105
|
requirements:
|
107
106
|
- - "~>"
|
108
107
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
108
|
+
version: '4.0'
|
110
109
|
- !ruby/object:Gem::Dependency
|
111
110
|
name: pipeable
|
112
111
|
requirement: !ruby/object:Gem::Requirement
|
113
112
|
requirements:
|
114
113
|
- - "~>"
|
115
114
|
- !ruby/object:Gem::Version
|
116
|
-
version: '0
|
115
|
+
version: '1.0'
|
117
116
|
type: :runtime
|
118
117
|
prerelease: false
|
119
118
|
version_requirements: !ruby/object:Gem::Requirement
|
120
119
|
requirements:
|
121
120
|
- - "~>"
|
122
121
|
- !ruby/object:Gem::Version
|
123
|
-
version: '0
|
122
|
+
version: '1.0'
|
124
123
|
- !ruby/object:Gem::Dependency
|
125
124
|
name: refinements
|
126
125
|
requirement: !ruby/object:Gem::Requirement
|
127
126
|
requirements:
|
128
127
|
- - "~>"
|
129
128
|
- !ruby/object:Gem::Version
|
130
|
-
version: '
|
129
|
+
version: '13.0'
|
131
130
|
type: :runtime
|
132
131
|
prerelease: false
|
133
132
|
version_requirements: !ruby/object:Gem::Requirement
|
134
133
|
requirements:
|
135
134
|
- - "~>"
|
136
135
|
- !ruby/object:Gem::Version
|
137
|
-
version: '
|
136
|
+
version: '13.0'
|
138
137
|
- !ruby/object:Gem::Dependency
|
139
138
|
name: zeitwerk
|
140
139
|
requirement: !ruby/object:Gem::Requirement
|
@@ -149,7 +148,6 @@ dependencies:
|
|
149
148
|
- - "~>"
|
150
149
|
- !ruby/object:Gem::Version
|
151
150
|
version: '2.7'
|
152
|
-
description:
|
153
151
|
email:
|
154
152
|
- brooke@alchemists.io
|
155
153
|
executables: []
|
@@ -168,28 +166,29 @@ files:
|
|
168
166
|
- lib/ghub/configuration/content.rb
|
169
167
|
- lib/ghub/configuration/loader.rb
|
170
168
|
- lib/ghub/container.rb
|
169
|
+
- lib/ghub/dependencies.rb
|
171
170
|
- lib/ghub/endpoints/branches/protection/actions/show.rb
|
172
171
|
- lib/ghub/endpoints/branches/protection/actions/update.rb
|
173
172
|
- lib/ghub/endpoints/branches/protection/container.rb
|
174
|
-
- lib/ghub/endpoints/branches/protection/
|
173
|
+
- lib/ghub/endpoints/branches/protection/dependencies.rb
|
175
174
|
- lib/ghub/endpoints/branches/protection/models/show.rb
|
176
175
|
- lib/ghub/endpoints/branches/protection/requests/update.rb
|
177
176
|
- lib/ghub/endpoints/branches/protection/responses/show.rb
|
178
177
|
- lib/ghub/endpoints/branches/protection/root.rb
|
179
178
|
- lib/ghub/endpoints/branches/signature/container.rb
|
180
|
-
- lib/ghub/endpoints/branches/signature/
|
179
|
+
- lib/ghub/endpoints/branches/signature/dependencies.rb
|
181
180
|
- lib/ghub/endpoints/branches/signature/root.rb
|
182
181
|
- lib/ghub/endpoints/container.rb
|
183
|
-
- lib/ghub/endpoints/
|
182
|
+
- lib/ghub/endpoints/dependencies.rb
|
184
183
|
- lib/ghub/endpoints/organizations/members/actions/index.rb
|
185
184
|
- lib/ghub/endpoints/organizations/members/container.rb
|
186
|
-
- lib/ghub/endpoints/organizations/members/
|
185
|
+
- lib/ghub/endpoints/organizations/members/dependencies.rb
|
187
186
|
- lib/ghub/endpoints/organizations/members/responses/index.rb
|
188
187
|
- lib/ghub/endpoints/organizations/members/root.rb
|
189
188
|
- lib/ghub/endpoints/pulls/actions/index.rb
|
190
189
|
- lib/ghub/endpoints/pulls/actions/show.rb
|
191
190
|
- lib/ghub/endpoints/pulls/container.rb
|
192
|
-
- lib/ghub/endpoints/pulls/
|
191
|
+
- lib/ghub/endpoints/pulls/dependencies.rb
|
193
192
|
- lib/ghub/endpoints/pulls/models/show.rb
|
194
193
|
- lib/ghub/endpoints/pulls/responses/index.rb
|
195
194
|
- lib/ghub/endpoints/pulls/responses/show.rb
|
@@ -199,7 +198,7 @@ files:
|
|
199
198
|
- lib/ghub/endpoints/repositories/actions/patch.rb
|
200
199
|
- lib/ghub/endpoints/repositories/actions/show.rb
|
201
200
|
- lib/ghub/endpoints/repositories/container.rb
|
202
|
-
- lib/ghub/endpoints/repositories/
|
201
|
+
- lib/ghub/endpoints/repositories/dependencies.rb
|
203
202
|
- lib/ghub/endpoints/repositories/path.rb
|
204
203
|
- lib/ghub/endpoints/repositories/requests/create.rb
|
205
204
|
- lib/ghub/endpoints/repositories/requests/patch.rb
|
@@ -208,20 +207,19 @@ files:
|
|
208
207
|
- lib/ghub/endpoints/repositories/root.rb
|
209
208
|
- lib/ghub/endpoints/search/users/actions/index.rb
|
210
209
|
- lib/ghub/endpoints/search/users/container.rb
|
211
|
-
- lib/ghub/endpoints/search/users/
|
210
|
+
- lib/ghub/endpoints/search/users/dependencies.rb
|
212
211
|
- lib/ghub/endpoints/search/users/models/index.rb
|
213
212
|
- lib/ghub/endpoints/search/users/responses/index.rb
|
214
213
|
- lib/ghub/endpoints/search/users/root.rb
|
215
214
|
- lib/ghub/endpoints/users/actions/index.rb
|
216
215
|
- lib/ghub/endpoints/users/actions/show.rb
|
217
216
|
- lib/ghub/endpoints/users/container.rb
|
218
|
-
- lib/ghub/endpoints/users/
|
217
|
+
- lib/ghub/endpoints/users/dependencies.rb
|
219
218
|
- lib/ghub/endpoints/users/models/index.rb
|
220
219
|
- lib/ghub/endpoints/users/models/show.rb
|
221
220
|
- lib/ghub/endpoints/users/responses/index.rb
|
222
221
|
- lib/ghub/endpoints/users/responses/show.rb
|
223
222
|
- lib/ghub/endpoints/users/root.rb
|
224
|
-
- lib/ghub/import.rb
|
225
223
|
- lib/ghub/models/application.rb
|
226
224
|
- lib/ghub/models/boolean_link.rb
|
227
225
|
- lib/ghub/models/branch.rb
|
@@ -266,16 +264,12 @@ metadata:
|
|
266
264
|
label: Ghub
|
267
265
|
rubygems_mfa_required: 'true'
|
268
266
|
source_code_uri: https://github.com/bkuhlmann/ghub
|
269
|
-
post_install_message:
|
270
267
|
rdoc_options: []
|
271
268
|
require_paths:
|
272
269
|
- lib
|
273
270
|
required_ruby_version: !ruby/object:Gem::Requirement
|
274
271
|
requirements:
|
275
|
-
- - "
|
276
|
-
- !ruby/object:Gem::Version
|
277
|
-
version: '3.3'
|
278
|
-
- - "<="
|
272
|
+
- - "~>"
|
279
273
|
- !ruby/object:Gem::Version
|
280
274
|
version: '3.4'
|
281
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
@@ -284,8 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
278
|
- !ruby/object:Gem::Version
|
285
279
|
version: '0'
|
286
280
|
requirements: []
|
287
|
-
rubygems_version: 3.
|
288
|
-
signing_key:
|
281
|
+
rubygems_version: 3.6.2
|
289
282
|
specification_version: 4
|
290
283
|
summary: A monadic GitHub API client.
|
291
284
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|