circleci 2.0.3 → 2.1.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
- checksums.yaml.gz.sig +3 -1
- data/README.md +28 -26
- data/lib/circleci/api_project_resource.rb +1 -1
- data/lib/circleci/config.rb +1 -1
- data/lib/circleci/project.rb +1 -1
- data/lib/circleci/request.rb +3 -1
- data/lib/circleci/response.rb +2 -0
- data.tar.gz.sig +0 -0
- metadata +66 -64
- 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: f2afb0a5374dd26e17a154bd2be56f31e9cfc62bd2c41a28455292ec0d4145ba
|
|
4
|
+
data.tar.gz: b41bb60ec7159d2015f662e833e3186e6f57e9d764f469abadd39b0168a27c6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f11fcd3365f6ce4d81179f762f7769972fac09835f9c6f1feca1a81a41011c866f6c5ed76fe1ff8437260bf0fd87b970724063480814411f2417f91a4ba14c12
|
|
7
|
+
data.tar.gz: 635f688d88bbe57805c04048f8475a750c984bb86229dbd51029524b6924712ee1398189f36db705dc7f4f29f7dec964309fdc1aef73869c480ceb00a686ca68
|
checksums.yaml.gz.sig
CHANGED
data/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
Circle CI API Wrapper. Requires ruby `>= 2.0.0`.
|
|
9
9
|
|
|
10
|
+
⚠️ **403 Forbidden issue with GET Requests fixed in 2.1.0**
|
|
11
|
+
|
|
10
12
|
## Install
|
|
11
13
|
|
|
12
14
|
```ruby
|
|
@@ -190,7 +192,7 @@ user.heroku_key 'your-api-key'
|
|
|
190
192
|
Example response
|
|
191
193
|
|
|
192
194
|
Empty body response with a `200 OK` response code
|
|
193
|
-
```
|
|
195
|
+
```js
|
|
194
196
|
""
|
|
195
197
|
```
|
|
196
198
|
|
|
@@ -212,7 +214,7 @@ user.me
|
|
|
212
214
|
|
|
213
215
|
Example response
|
|
214
216
|
|
|
215
|
-
```
|
|
217
|
+
```js
|
|
216
218
|
{
|
|
217
219
|
"basic_email_prefs" : "smart", // can be "smart", "none" or "all"
|
|
218
220
|
"login" : "pbiggar" // your github username
|
|
@@ -239,7 +241,7 @@ projects.get
|
|
|
239
241
|
|
|
240
242
|
Example response
|
|
241
243
|
|
|
242
|
-
```
|
|
244
|
+
```js
|
|
243
245
|
[ {
|
|
244
246
|
"vcs_url": "https://github.com/circleci/mongofinil"
|
|
245
247
|
"followed": true // true if you follow this project in Circle
|
|
@@ -308,7 +310,7 @@ project.build_branch 'branch'
|
|
|
308
310
|
|
|
309
311
|
Example response
|
|
310
312
|
|
|
311
|
-
```
|
|
313
|
+
```js
|
|
312
314
|
{
|
|
313
315
|
"compare" : null,
|
|
314
316
|
"previous_successful_build" : {
|
|
@@ -409,7 +411,7 @@ project.build_ssh_key 'username', 'repo', 'RSA private key', 'hostname'
|
|
|
409
411
|
Example response
|
|
410
412
|
|
|
411
413
|
Empty response body with a `200 OK` successful response code
|
|
412
|
-
```
|
|
414
|
+
```js
|
|
413
415
|
""
|
|
414
416
|
```
|
|
415
417
|
|
|
@@ -431,7 +433,7 @@ project.clear_cache
|
|
|
431
433
|
|
|
432
434
|
Example response
|
|
433
435
|
|
|
434
|
-
```
|
|
436
|
+
```js
|
|
435
437
|
{
|
|
436
438
|
"status" : "build caches deleted"
|
|
437
439
|
}
|
|
@@ -454,7 +456,7 @@ project.delete_checkout_key 'fingerprint'
|
|
|
454
456
|
|
|
455
457
|
Example response
|
|
456
458
|
|
|
457
|
-
```
|
|
459
|
+
```js
|
|
458
460
|
{"message":"ok"}
|
|
459
461
|
```
|
|
460
462
|
|
|
@@ -476,7 +478,7 @@ project.enable
|
|
|
476
478
|
```
|
|
477
479
|
|
|
478
480
|
Example response
|
|
479
|
-
```
|
|
481
|
+
```js
|
|
480
482
|
{
|
|
481
483
|
"hall_notify_prefs": nil,
|
|
482
484
|
"irc_password": nil,
|
|
@@ -570,7 +572,7 @@ project.envvar
|
|
|
570
572
|
|
|
571
573
|
Example response
|
|
572
574
|
|
|
573
|
-
```
|
|
575
|
+
```js
|
|
574
576
|
[{"name":"foo","value":"xxxx"}]
|
|
575
577
|
```
|
|
576
578
|
|
|
@@ -592,7 +594,7 @@ project.follow
|
|
|
592
594
|
|
|
593
595
|
Example response
|
|
594
596
|
|
|
595
|
-
```
|
|
597
|
+
```js
|
|
596
598
|
{
|
|
597
599
|
"followed": true,
|
|
598
600
|
"first_build": nil
|
|
@@ -617,7 +619,7 @@ project.get_checkout_key 'fingerprint
|
|
|
617
619
|
|
|
618
620
|
Example response
|
|
619
621
|
|
|
620
|
-
```
|
|
622
|
+
```js
|
|
621
623
|
{
|
|
622
624
|
"public_key": "ssh-rsa...",
|
|
623
625
|
"type": "deploy-key", // can be "deploy-key" or "user-key"
|
|
@@ -645,7 +647,7 @@ project.checkout_keys
|
|
|
645
647
|
|
|
646
648
|
Example response
|
|
647
649
|
|
|
648
|
-
```
|
|
650
|
+
```js
|
|
649
651
|
[
|
|
650
652
|
{
|
|
651
653
|
"public_key": "ssh-rsa...",
|
|
@@ -676,7 +678,7 @@ project.new_checkout_key 'deploy-key
|
|
|
676
678
|
|
|
677
679
|
Example response
|
|
678
680
|
|
|
679
|
-
```
|
|
681
|
+
```js
|
|
680
682
|
{
|
|
681
683
|
"public_key": "ssh-rsa...",
|
|
682
684
|
"type": "deploy-key", // can be "deploy-key" or "user-key"
|
|
@@ -710,7 +712,7 @@ project.recent_builds
|
|
|
710
712
|
|
|
711
713
|
Example response
|
|
712
714
|
|
|
713
|
-
```
|
|
715
|
+
```js
|
|
714
716
|
[ {
|
|
715
717
|
"vcs_url" : "https://github.com/circleci/mongofinil",
|
|
716
718
|
"build_url" : "https://circleci.com/gh/circleci/mongofinil/22",
|
|
@@ -761,7 +763,7 @@ project.recent_builds_branch 'branch'
|
|
|
761
763
|
|
|
762
764
|
Example response
|
|
763
765
|
|
|
764
|
-
```
|
|
766
|
+
```js
|
|
765
767
|
[ {
|
|
766
768
|
"vcs_url" : "https://github.com/circleci/mongofinil",
|
|
767
769
|
"build_url" : "https://circleci.com/gh/circleci/mongofinil/22",
|
|
@@ -806,7 +808,7 @@ project.settings
|
|
|
806
808
|
|
|
807
809
|
Example response
|
|
808
810
|
|
|
809
|
-
```
|
|
811
|
+
```js
|
|
810
812
|
{
|
|
811
813
|
"hall_notify_prefs": nil,
|
|
812
814
|
"irc_password": nil,
|
|
@@ -891,7 +893,7 @@ project.add_envvar environment
|
|
|
891
893
|
|
|
892
894
|
Example response
|
|
893
895
|
|
|
894
|
-
```
|
|
896
|
+
```js
|
|
895
897
|
{"name":"foo","value":"xxxx"}
|
|
896
898
|
```
|
|
897
899
|
|
|
@@ -915,7 +917,7 @@ project.delete_envvar envvar
|
|
|
915
917
|
|
|
916
918
|
Example response
|
|
917
919
|
|
|
918
|
-
```
|
|
920
|
+
```js
|
|
919
921
|
{"message": "ok"}
|
|
920
922
|
```
|
|
921
923
|
|
|
@@ -939,7 +941,7 @@ project.ssh_key 'RSA private key', 'hostname'
|
|
|
939
941
|
Example response
|
|
940
942
|
|
|
941
943
|
Empty response body with a `200 OK` successful response code
|
|
942
|
-
```
|
|
944
|
+
```js
|
|
943
945
|
""
|
|
944
946
|
```
|
|
945
947
|
|
|
@@ -961,7 +963,7 @@ project.unfollow
|
|
|
961
963
|
|
|
962
964
|
Example response
|
|
963
965
|
|
|
964
|
-
```
|
|
966
|
+
```js
|
|
965
967
|
{
|
|
966
968
|
"followed": false
|
|
967
969
|
}
|
|
@@ -985,7 +987,7 @@ build = CircleCi::Build.new 'username', 'reponame', nil, 'build', other_build_co
|
|
|
985
987
|
build.artifacts
|
|
986
988
|
```
|
|
987
989
|
|
|
988
|
-
```
|
|
990
|
+
```js
|
|
989
991
|
[
|
|
990
992
|
{
|
|
991
993
|
node_index: 0,
|
|
@@ -1020,7 +1022,7 @@ build.cancel
|
|
|
1020
1022
|
|
|
1021
1023
|
Example response
|
|
1022
1024
|
|
|
1023
|
-
```
|
|
1025
|
+
```js
|
|
1024
1026
|
{
|
|
1025
1027
|
"vcs_url" : "https://github.com/circleci/mongofinil",
|
|
1026
1028
|
"build_url" : "https://circleci.com/gh/circleci/mongofinil/26",
|
|
@@ -1069,7 +1071,7 @@ build.get
|
|
|
1069
1071
|
|
|
1070
1072
|
Example response
|
|
1071
1073
|
|
|
1072
|
-
```
|
|
1074
|
+
```js
|
|
1073
1075
|
{
|
|
1074
1076
|
"vcs_url" : "https://github.com/circleci/mongofinil",
|
|
1075
1077
|
"build_url" : "https://circleci.com/gh/circleci/mongofinil/22",
|
|
@@ -1162,7 +1164,7 @@ build.retry
|
|
|
1162
1164
|
|
|
1163
1165
|
Example response
|
|
1164
1166
|
|
|
1165
|
-
```
|
|
1167
|
+
```js
|
|
1166
1168
|
{
|
|
1167
1169
|
"vcs_url" : "https://github.com/circleci/mongofinil",
|
|
1168
1170
|
"build_url" : "https://circleci.com/gh/circleci/mongofinil/23",
|
|
@@ -1206,7 +1208,7 @@ build = CircleCi::Build.new 'username', 'reponame', nil, 'build', other_build_co
|
|
|
1206
1208
|
build.tests
|
|
1207
1209
|
```
|
|
1208
1210
|
|
|
1209
|
-
```
|
|
1211
|
+
```js
|
|
1210
1212
|
[
|
|
1211
1213
|
{
|
|
1212
1214
|
"message" => nil,
|
|
@@ -1250,7 +1252,7 @@ recent = CircleCi::RecentBuilds.new other_builds_config
|
|
|
1250
1252
|
recent.get
|
|
1251
1253
|
```
|
|
1252
1254
|
|
|
1253
|
-
```
|
|
1255
|
+
```js
|
|
1254
1256
|
[ {
|
|
1255
1257
|
"vcs_url" : "https://github.com/circleci/mongofinil",
|
|
1256
1258
|
"build_url" : "https://circleci.com/gh/circleci/mongofinil/22",
|
|
@@ -20,7 +20,7 @@ module CircleCi
|
|
|
20
20
|
# @param build [String] - The build number for a project
|
|
21
21
|
# @param conf [CircleCi::Config] - Optional config to use for request
|
|
22
22
|
# @return [CircleCi::Project]
|
|
23
|
-
def initialize(username = nil, project = nil, vcs_type = nil, build = nil, conf = nil)
|
|
23
|
+
def initialize(username = nil, project = nil, vcs_type = nil, build = nil, conf = nil) # rubocop:disable Metrics/ParameterLists
|
|
24
24
|
super(username, project, conf)
|
|
25
25
|
@vcs_type = VALID_VCS_TYPES.include?(vcs_type) ? vcs_type : DEFAULT_VCS_TYPE
|
|
26
26
|
@build = build
|
data/lib/circleci/config.rb
CHANGED
data/lib/circleci/project.rb
CHANGED
|
@@ -14,7 +14,7 @@ module CircleCi
|
|
|
14
14
|
# @param vcs_type [String] - The vcs type i.e. github or bitbucket
|
|
15
15
|
# @param conf [CircleCi::Config] - Optional config to use for request
|
|
16
16
|
# @return [CircleCi::Project]
|
|
17
|
-
def initialize(username = nil, project = nil, vcs_type = nil, conf = nil)
|
|
17
|
+
def initialize(username = nil, project = nil, vcs_type = nil, conf = nil) # rubocop:disable Metrics/ParameterLists
|
|
18
18
|
super(username, project, vcs_type, nil, conf)
|
|
19
19
|
end
|
|
20
20
|
|
data/lib/circleci/request.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'openssl'
|
|
2
4
|
|
|
3
5
|
# frozen_string_literal: true
|
|
@@ -47,7 +49,7 @@ module CircleCi
|
|
|
47
49
|
|
|
48
50
|
def connection(verb, body = {})
|
|
49
51
|
req = Net::HTTP.const_get(verb.to_s.capitalize, false).new(@uri, DEFAULT_HEADERS)
|
|
50
|
-
req.body = JSON.dump(body)
|
|
52
|
+
req.body = JSON.dump(body) unless verb == :get
|
|
51
53
|
req
|
|
52
54
|
end
|
|
53
55
|
|
data/lib/circleci/response.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: circleci
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chavez
|
|
@@ -10,31 +10,32 @@ bindir: bin
|
|
|
10
10
|
cert_chain:
|
|
11
11
|
- |
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
/
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
13
|
+
MIIEeDCCAuCgAwIBAgIBATANBgkqhkiG9w0BAQsFADBBMRAwDgYDVQQDDAdjb250
|
|
14
|
+
YWN0MRkwFwYKCZImiZPyLGQBGRYJZWwtY2hhdmV6MRIwEAYKCZImiZPyLGQBGRYC
|
|
15
|
+
bWUwHhcNMjIwNTE2MTYzNDEwWhcNMjMwNTE2MTYzNDEwWjBBMRAwDgYDVQQDDAdj
|
|
16
|
+
b250YWN0MRkwFwYKCZImiZPyLGQBGRYJZWwtY2hhdmV6MRIwEAYKCZImiZPyLGQB
|
|
17
|
+
GRYCbWUwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCZc8MEuKWEAM8X
|
|
18
|
+
WCwtJ5yVgTzIbBFWo/Rq9RDBV5QHEGtkxqi4tvxcAP5Gw+iXxnfsysEOfTDa1FNw
|
|
19
|
+
YMhh38X9Ob7y3F/3G4CMu0MHGgIbzbQMs58pBfyBCB9u9ELVyzrHt4okThHG+KgN
|
|
20
|
+
EUD1FwgXeZCpjipx35y9QVO1Oax46p4cJo3UStEBHebkkU4P6Ch8OC39Neg2RGLI
|
|
21
|
+
oczDtOOP2hv/dqlgtCnOpuT48ycyJ4c/34/TXAPOZZy6buF9xZCR4yyoIB+qOtHP
|
|
22
|
+
cjdf2GBZIjsNtVvl8OIM1yotJRnndujKnAuFuPppOjnYD8xfm/qj2EApgVyjuWpg
|
|
23
|
+
2ltbeYmeU4sbi7W1IuSLe4TDDveSLJh5AAbSUC31diSdksx67nmhDYlqN1HTPWLY
|
|
24
|
+
yv1rEPz8vlQikzfwwL/vdhYocxzsMV0B+y3bonq40GJ2MWFROdwpct+D26Jo3Y+C
|
|
25
|
+
jJ6XeJosdueHvYBB1jy7j4QNOEBXDcwM80Kab1FUq469TbjTOPECAwEAAaN7MHkw
|
|
26
|
+
CQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFM58c7sLuFcAZthV1ngO
|
|
27
|
+
0x3oyP02MB8GA1UdEQQYMBaBFGNvbnRhY3RAZWwtY2hhdmV6Lm1lMB8GA1UdEgQY
|
|
28
|
+
MBaBFGNvbnRhY3RAZWwtY2hhdmV6Lm1lMA0GCSqGSIb3DQEBCwUAA4IBgQAAjCBc
|
|
29
|
+
p5GzU6dOAe1afNSBn31KSYQedp0idL7TLLDBlUEAOPkBGxZvYG+78NOlw/12ci2E
|
|
30
|
+
H7oLWs2WNrIl6LwGVpueveEOTxqgvkhxPM/+8hvA1Rb5I9eCcLJrOvk36K/1LDyR
|
|
31
|
+
HSrSHnFDIk5wlSNCLK+pVOTS1s1wbXlV/DfuncKgDeGQKW9aQ5jHBZjk0u23qbox
|
|
32
|
+
j8goGrnX72zOv7ysPYDebJwpXjMXv8k+69M7CkCkeqTO8sRxnszNpnlB6DMqIhnI
|
|
33
|
+
bU76Xth/U7KdRV/d4bdBAMait/SQDJd+EjwTS2vvbpuEEJwLNN3/+DViQ0CA+vGC
|
|
34
|
+
bP6SNtxoWX20A6bkT2pf19J77p1LNFQAtQ2uUWqoXHdhtUvmpo28/WH/WY1CGuhP
|
|
35
|
+
skirV2p91csPqqACuQCX2oK9r29QZtt95aAnVdsdBMA+evI2nVknO0OhYDqNA0wR
|
|
36
|
+
SkUCdTSDgV9CsbN/vy6DeR0eX1kP6OrntZJjKnrncbkKZnrJ5fjzKtUyj3I=
|
|
36
37
|
-----END CERTIFICATE-----
|
|
37
|
-
date:
|
|
38
|
+
date: 2022-08-03 00:00:00.000000000 Z
|
|
38
39
|
dependencies:
|
|
39
40
|
- !ruby/object:Gem::Dependency
|
|
40
41
|
name: dotenv
|
|
@@ -64,62 +65,48 @@ dependencies:
|
|
|
64
65
|
- - "~>"
|
|
65
66
|
- !ruby/object:Gem::Version
|
|
66
67
|
version: 0.7.1
|
|
67
|
-
- !ruby/object:Gem::Dependency
|
|
68
|
-
name: multi_json
|
|
69
|
-
requirement: !ruby/object:Gem::Requirement
|
|
70
|
-
requirements:
|
|
71
|
-
- - "~>"
|
|
72
|
-
- !ruby/object:Gem::Version
|
|
73
|
-
version: 1.14.1
|
|
74
|
-
type: :development
|
|
75
|
-
prerelease: false
|
|
76
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
77
|
-
requirements:
|
|
78
|
-
- - "~>"
|
|
79
|
-
- !ruby/object:Gem::Version
|
|
80
|
-
version: 1.14.1
|
|
81
68
|
- !ruby/object:Gem::Dependency
|
|
82
69
|
name: pry
|
|
83
70
|
requirement: !ruby/object:Gem::Requirement
|
|
84
71
|
requirements:
|
|
85
72
|
- - "~>"
|
|
86
73
|
- !ruby/object:Gem::Version
|
|
87
|
-
version: 0.
|
|
74
|
+
version: 0.14.1
|
|
88
75
|
type: :development
|
|
89
76
|
prerelease: false
|
|
90
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
91
78
|
requirements:
|
|
92
79
|
- - "~>"
|
|
93
80
|
- !ruby/object:Gem::Version
|
|
94
|
-
version: 0.
|
|
81
|
+
version: 0.14.1
|
|
95
82
|
- !ruby/object:Gem::Dependency
|
|
96
83
|
name: pry-byebug
|
|
97
84
|
requirement: !ruby/object:Gem::Requirement
|
|
98
85
|
requirements:
|
|
99
86
|
- - "~>"
|
|
100
87
|
- !ruby/object:Gem::Version
|
|
101
|
-
version: 3.
|
|
88
|
+
version: 3.8.0
|
|
102
89
|
type: :development
|
|
103
90
|
prerelease: false
|
|
104
91
|
version_requirements: !ruby/object:Gem::Requirement
|
|
105
92
|
requirements:
|
|
106
93
|
- - "~>"
|
|
107
94
|
- !ruby/object:Gem::Version
|
|
108
|
-
version: 3.
|
|
95
|
+
version: 3.8.0
|
|
109
96
|
- !ruby/object:Gem::Dependency
|
|
110
97
|
name: pry-doc
|
|
111
98
|
requirement: !ruby/object:Gem::Requirement
|
|
112
99
|
requirements:
|
|
113
100
|
- - "~>"
|
|
114
101
|
- !ruby/object:Gem::Version
|
|
115
|
-
version: 1.
|
|
102
|
+
version: 1.3.0
|
|
116
103
|
type: :development
|
|
117
104
|
prerelease: false
|
|
118
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
119
106
|
requirements:
|
|
120
107
|
- - "~>"
|
|
121
108
|
- !ruby/object:Gem::Version
|
|
122
|
-
version: 1.
|
|
109
|
+
version: 1.3.0
|
|
123
110
|
- !ruby/object:Gem::Dependency
|
|
124
111
|
name: rake
|
|
125
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -154,112 +141,126 @@ dependencies:
|
|
|
154
141
|
requirements:
|
|
155
142
|
- - "~>"
|
|
156
143
|
- !ruby/object:Gem::Version
|
|
157
|
-
version: 3.
|
|
144
|
+
version: 3.11.0
|
|
158
145
|
type: :development
|
|
159
146
|
prerelease: false
|
|
160
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
161
148
|
requirements:
|
|
162
149
|
- - "~>"
|
|
163
150
|
- !ruby/object:Gem::Version
|
|
164
|
-
version: 3.
|
|
151
|
+
version: 3.11.0
|
|
165
152
|
- !ruby/object:Gem::Dependency
|
|
166
153
|
name: rubocop
|
|
167
154
|
requirement: !ruby/object:Gem::Requirement
|
|
168
155
|
requirements:
|
|
169
156
|
- - "~>"
|
|
170
157
|
- !ruby/object:Gem::Version
|
|
171
|
-
version:
|
|
158
|
+
version: 1.29.1
|
|
172
159
|
type: :development
|
|
173
160
|
prerelease: false
|
|
174
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
175
162
|
requirements:
|
|
176
163
|
- - "~>"
|
|
177
164
|
- !ruby/object:Gem::Version
|
|
178
|
-
version:
|
|
165
|
+
version: 1.29.1
|
|
179
166
|
- !ruby/object:Gem::Dependency
|
|
180
167
|
name: rubocop-performance
|
|
181
168
|
requirement: !ruby/object:Gem::Requirement
|
|
182
169
|
requirements:
|
|
183
170
|
- - "~>"
|
|
184
171
|
- !ruby/object:Gem::Version
|
|
185
|
-
version: 1.
|
|
172
|
+
version: 1.13.3
|
|
186
173
|
type: :development
|
|
187
174
|
prerelease: false
|
|
188
175
|
version_requirements: !ruby/object:Gem::Requirement
|
|
189
176
|
requirements:
|
|
190
177
|
- - "~>"
|
|
191
178
|
- !ruby/object:Gem::Version
|
|
192
|
-
version: 1.
|
|
179
|
+
version: 1.13.3
|
|
193
180
|
- !ruby/object:Gem::Dependency
|
|
194
181
|
name: rubocop-rspec
|
|
195
182
|
requirement: !ruby/object:Gem::Requirement
|
|
196
183
|
requirements:
|
|
197
184
|
- - "~>"
|
|
198
185
|
- !ruby/object:Gem::Version
|
|
199
|
-
version:
|
|
186
|
+
version: 2.11.0
|
|
200
187
|
type: :development
|
|
201
188
|
prerelease: false
|
|
202
189
|
version_requirements: !ruby/object:Gem::Requirement
|
|
203
190
|
requirements:
|
|
204
191
|
- - "~>"
|
|
205
192
|
- !ruby/object:Gem::Version
|
|
206
|
-
version:
|
|
193
|
+
version: 2.11.0
|
|
207
194
|
- !ruby/object:Gem::Dependency
|
|
208
195
|
name: simplecov
|
|
209
196
|
requirement: !ruby/object:Gem::Requirement
|
|
210
197
|
requirements:
|
|
211
198
|
- - "~>"
|
|
212
199
|
- !ruby/object:Gem::Version
|
|
213
|
-
version: 0.
|
|
200
|
+
version: 0.21.2
|
|
214
201
|
type: :development
|
|
215
202
|
prerelease: false
|
|
216
203
|
version_requirements: !ruby/object:Gem::Requirement
|
|
217
204
|
requirements:
|
|
218
205
|
- - "~>"
|
|
219
206
|
- !ruby/object:Gem::Version
|
|
220
|
-
version: 0.
|
|
207
|
+
version: 0.21.2
|
|
208
|
+
- !ruby/object:Gem::Dependency
|
|
209
|
+
name: simplecov_json_formatter
|
|
210
|
+
requirement: !ruby/object:Gem::Requirement
|
|
211
|
+
requirements:
|
|
212
|
+
- - "~>"
|
|
213
|
+
- !ruby/object:Gem::Version
|
|
214
|
+
version: 0.1.4
|
|
215
|
+
type: :development
|
|
216
|
+
prerelease: false
|
|
217
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
218
|
+
requirements:
|
|
219
|
+
- - "~>"
|
|
220
|
+
- !ruby/object:Gem::Version
|
|
221
|
+
version: 0.1.4
|
|
221
222
|
- !ruby/object:Gem::Dependency
|
|
222
223
|
name: typhoeus
|
|
223
224
|
requirement: !ruby/object:Gem::Requirement
|
|
224
225
|
requirements:
|
|
225
226
|
- - "~>"
|
|
226
227
|
- !ruby/object:Gem::Version
|
|
227
|
-
version: 1.
|
|
228
|
+
version: 1.4.0
|
|
228
229
|
type: :development
|
|
229
230
|
prerelease: false
|
|
230
231
|
version_requirements: !ruby/object:Gem::Requirement
|
|
231
232
|
requirements:
|
|
232
233
|
- - "~>"
|
|
233
234
|
- !ruby/object:Gem::Version
|
|
234
|
-
version: 1.
|
|
235
|
+
version: 1.4.0
|
|
235
236
|
- !ruby/object:Gem::Dependency
|
|
236
237
|
name: vcr
|
|
237
238
|
requirement: !ruby/object:Gem::Requirement
|
|
238
239
|
requirements:
|
|
239
240
|
- - "~>"
|
|
240
241
|
- !ruby/object:Gem::Version
|
|
241
|
-
version:
|
|
242
|
+
version: 6.1.0
|
|
242
243
|
type: :development
|
|
243
244
|
prerelease: false
|
|
244
245
|
version_requirements: !ruby/object:Gem::Requirement
|
|
245
246
|
requirements:
|
|
246
247
|
- - "~>"
|
|
247
248
|
- !ruby/object:Gem::Version
|
|
248
|
-
version:
|
|
249
|
+
version: 6.1.0
|
|
249
250
|
- !ruby/object:Gem::Dependency
|
|
250
251
|
name: webmock
|
|
251
252
|
requirement: !ruby/object:Gem::Requirement
|
|
252
253
|
requirements:
|
|
253
254
|
- - "~>"
|
|
254
255
|
- !ruby/object:Gem::Version
|
|
255
|
-
version: 3.
|
|
256
|
+
version: 3.14.0
|
|
256
257
|
type: :development
|
|
257
258
|
prerelease: false
|
|
258
259
|
version_requirements: !ruby/object:Gem::Requirement
|
|
259
260
|
requirements:
|
|
260
261
|
- - "~>"
|
|
261
262
|
- !ruby/object:Gem::Version
|
|
262
|
-
version: 3.
|
|
263
|
+
version: 3.14.0
|
|
263
264
|
- !ruby/object:Gem::Dependency
|
|
264
265
|
name: yard
|
|
265
266
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -296,7 +297,8 @@ files:
|
|
|
296
297
|
homepage: http://github.com/mtchavez/circleci
|
|
297
298
|
licenses:
|
|
298
299
|
- MIT
|
|
299
|
-
metadata:
|
|
300
|
+
metadata:
|
|
301
|
+
rubygems_mfa_required: 'true'
|
|
300
302
|
post_install_message:
|
|
301
303
|
rdoc_options:
|
|
302
304
|
- "--charset=UTF-8"
|
|
@@ -307,14 +309,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
307
309
|
requirements:
|
|
308
310
|
- - ">="
|
|
309
311
|
- !ruby/object:Gem::Version
|
|
310
|
-
version: 2.
|
|
312
|
+
version: 2.6.0
|
|
311
313
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
312
314
|
requirements:
|
|
313
315
|
- - ">="
|
|
314
316
|
- !ruby/object:Gem::Version
|
|
315
317
|
version: '0'
|
|
316
318
|
requirements: []
|
|
317
|
-
rubygems_version: 3.
|
|
319
|
+
rubygems_version: 3.1.6
|
|
318
320
|
signing_key:
|
|
319
321
|
specification_version: 4
|
|
320
322
|
summary: Circle CI REST API gem
|
metadata.gz.sig
CHANGED
|
Binary file
|