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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61090d7131b3dfc9c8f463ef02bea44d11add5afabf993461c3fcaaf4209f81e
4
- data.tar.gz: e779ebf7c41772d7d2cf20ca4606fdc95db01e8df033ad4bd526e65a5c5626e0
3
+ metadata.gz: f2afb0a5374dd26e17a154bd2be56f31e9cfc62bd2c41a28455292ec0d4145ba
4
+ data.tar.gz: b41bb60ec7159d2015f662e833e3186e6f57e9d764f469abadd39b0168a27c6b
5
5
  SHA512:
6
- metadata.gz: b4fc083397d34c127e3318842acf314694427c562d463b3906af7d31697b4be5eec712d544fa8cd1cdb6e60679e876c868ed7774f532ec88596900502e603d9a
7
- data.tar.gz: 9416105095244a10d840250e359d9ba3570bd7a4a695660ec50c832fad45207f0c81a2bbf893ddf0ae3102eae48dd7aa00f2efb92c4ef14a0fe51f20171e5334
6
+ metadata.gz: f11fcd3365f6ce4d81179f762f7769972fac09835f9c6f1feca1a81a41011c866f6c5ed76fe1ff8437260bf0fd87b970724063480814411f2417f91a4ba14c12
7
+ data.tar.gz: 635f688d88bbe57805c04048f8475a750c984bb86229dbd51029524b6924712ee1398189f36db705dc7f4f29f7dec964309fdc1aef73869c480ceb00a686ca68
checksums.yaml.gz.sig CHANGED
@@ -1 +1,3 @@
1
- �bY��?ӭ7�2 :�S�h��{Q5sIe��[x{��%��F��$��gC<[W����
1
+ yK���h#�<\�I�֊T^�+�u�����Z�:��f=�$��9Qw�����Z ���i�����83b��i("�&�
2
+ ,Ќ���Cᾟ������%���3�⁻Jj��Mɍ�)�e���UQ,أ�c䤔;�Υ�x6c
3
+ �!�#�������ֽM����?��I�N�pP�����T��^�Ϻ�5�yf������,�nn*_d�!H,�\[�
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
- ```javascript
195
+ ```js
194
196
  ""
195
197
  ```
196
198
 
@@ -212,7 +214,7 @@ user.me
212
214
 
213
215
  Example response
214
216
 
215
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
414
+ ```js
413
415
  ""
414
416
  ```
415
417
 
@@ -431,7 +433,7 @@ project.clear_cache
431
433
 
432
434
  Example response
433
435
 
434
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
944
+ ```js
943
945
  ""
944
946
  ```
945
947
 
@@ -961,7 +963,7 @@ project.unfollow
961
963
 
962
964
  Example response
963
965
 
964
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
- ```javascript
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
@@ -25,7 +25,7 @@ module CircleCi
25
25
  @version = version
26
26
  @token = token
27
27
  @request_overrides = request_overrides
28
- @logger = logger || Logger.new(STDOUT)
28
+ @logger = logger || Logger.new($stdout)
29
29
  end
30
30
  # rubocop:enable Metrics/ParameterLists
31
31
 
@@ -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
 
@@ -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
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'forwardable'
2
4
 
3
5
  # frozen_string_literal: true
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.3
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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 75BKqrQxNwiCUbkCXRz2qm4hI1mXMjXeZoCTzkDrAgMBAAGjezB5MAkGA1UdEwQC
25
- MAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBTfbl7AdXC+ZHUSdKQDm3WSqdZFWzAf
26
- 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
- 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
- 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
- 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
- AVgxYC8MXr+Memsyxts6+XTfLqCl8CgmrGDgrmeyLgTUonnNCiorvh19HSDdqTru
31
- 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
- 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
- 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
- 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
- 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
36
37
  -----END CERTIFICATE-----
37
- date: 2020-01-06 00:00:00.000000000 Z
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.12.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.12.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.7.0
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.7.0
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.0.0
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.0.0
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.9.0
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.9.0
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: 0.79.0
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: 0.79.0
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.5.2
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.5.2
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: 1.37.1
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: 1.37.1
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.17.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.17.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.3.0
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.3.0
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: 4.0.0
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: 4.0.0
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.7.1
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.7.1
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.0.0
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.0.1
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