platform-api 3.7.0 → 3.9.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
- data/.github/workflows/rspec.yml +31 -0
- data/CHANGELOG.md +10 -2
- data/README.md +4 -21
- data/Rakefile +1 -1
- data/lib/platform-api/client.rb +1742 -248
- data/lib/platform-api/version.rb +1 -1
- data/schema.json +1588 -205
- metadata +4 -7
- data/.circleci/config.yml +0 -94
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: platform-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jkakar
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2026-02-19 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bundler
|
|
@@ -171,8 +170,8 @@ executables: []
|
|
|
171
170
|
extensions: []
|
|
172
171
|
extra_rdoc_files: []
|
|
173
172
|
files:
|
|
174
|
-
- ".circleci/config.yml"
|
|
175
173
|
- ".github/workflows/check_changelog.yml"
|
|
174
|
+
- ".github/workflows/rspec.yml"
|
|
176
175
|
- ".gitignore"
|
|
177
176
|
- ".rspec"
|
|
178
177
|
- ".yardopts"
|
|
@@ -197,7 +196,6 @@ homepage: https://github.com/heroku/platform-api
|
|
|
197
196
|
licenses:
|
|
198
197
|
- MIT
|
|
199
198
|
metadata: {}
|
|
200
|
-
post_install_message:
|
|
201
199
|
rdoc_options: []
|
|
202
200
|
require_paths:
|
|
203
201
|
- lib
|
|
@@ -212,8 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
212
210
|
- !ruby/object:Gem::Version
|
|
213
211
|
version: '0'
|
|
214
212
|
requirements: []
|
|
215
|
-
rubygems_version: 3.
|
|
216
|
-
signing_key:
|
|
213
|
+
rubygems_version: 3.6.3
|
|
217
214
|
specification_version: 4
|
|
218
215
|
summary: Ruby HTTP client for the Heroku API.
|
|
219
216
|
test_files: []
|
data/.circleci/config.yml
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
references:
|
|
3
|
-
unit: &unit
|
|
4
|
-
run:
|
|
5
|
-
name: Run test suite
|
|
6
|
-
command: bundle exec rspec ./spec
|
|
7
|
-
hatchet_setup: &hatchet_setup
|
|
8
|
-
run:
|
|
9
|
-
name: Hatchet setup
|
|
10
|
-
command: |
|
|
11
|
-
bundle exec hatchet ci:setup
|
|
12
|
-
bundle: &bundle
|
|
13
|
-
run:
|
|
14
|
-
name: install dependencies
|
|
15
|
-
command: |
|
|
16
|
-
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
|
17
|
-
jobs:
|
|
18
|
-
"ruby-2.2":
|
|
19
|
-
docker:
|
|
20
|
-
- image: circleci/ruby:2.2
|
|
21
|
-
steps:
|
|
22
|
-
- checkout
|
|
23
|
-
- <<: *bundle
|
|
24
|
-
- <<: *hatchet_setup
|
|
25
|
-
- <<: *unit
|
|
26
|
-
"ruby-2.3":
|
|
27
|
-
docker:
|
|
28
|
-
- image: circleci/ruby:2.3
|
|
29
|
-
steps:
|
|
30
|
-
- checkout
|
|
31
|
-
- <<: *bundle
|
|
32
|
-
- <<: *hatchet_setup
|
|
33
|
-
- <<: *unit
|
|
34
|
-
"ruby-2.4":
|
|
35
|
-
docker:
|
|
36
|
-
- image: circleci/ruby:2.4
|
|
37
|
-
steps:
|
|
38
|
-
- checkout
|
|
39
|
-
- <<: *bundle
|
|
40
|
-
- <<: *hatchet_setup
|
|
41
|
-
- <<: *unit
|
|
42
|
-
"ruby-2.5":
|
|
43
|
-
docker:
|
|
44
|
-
- image: circleci/ruby:2.5
|
|
45
|
-
steps:
|
|
46
|
-
- checkout
|
|
47
|
-
- <<: *bundle
|
|
48
|
-
- <<: *hatchet_setup
|
|
49
|
-
- <<: *unit
|
|
50
|
-
"ruby-2.6":
|
|
51
|
-
docker:
|
|
52
|
-
- image: circleci/ruby:2.6
|
|
53
|
-
steps:
|
|
54
|
-
- checkout
|
|
55
|
-
- <<: *bundle
|
|
56
|
-
- <<: *hatchet_setup
|
|
57
|
-
- <<: *unit
|
|
58
|
-
"ruby-2.7":
|
|
59
|
-
docker:
|
|
60
|
-
- image: circleci/ruby:2.7
|
|
61
|
-
steps:
|
|
62
|
-
- checkout
|
|
63
|
-
- <<: *bundle
|
|
64
|
-
- <<: *hatchet_setup
|
|
65
|
-
- <<: *unit
|
|
66
|
-
"ruby-3.0":
|
|
67
|
-
docker:
|
|
68
|
-
- image: circleci/ruby:3.0
|
|
69
|
-
steps:
|
|
70
|
-
- checkout
|
|
71
|
-
- <<: *bundle
|
|
72
|
-
- <<: *hatchet_setup
|
|
73
|
-
- <<: *unit
|
|
74
|
-
"ruby-3.1":
|
|
75
|
-
docker:
|
|
76
|
-
- image: circleci/ruby:3.1
|
|
77
|
-
steps:
|
|
78
|
-
- checkout
|
|
79
|
-
- <<: *bundle
|
|
80
|
-
- <<: *hatchet_setup
|
|
81
|
-
- <<: *unit
|
|
82
|
-
|
|
83
|
-
workflows:
|
|
84
|
-
version: 2
|
|
85
|
-
build:
|
|
86
|
-
jobs:
|
|
87
|
-
- "ruby-2.2"
|
|
88
|
-
- "ruby-2.3"
|
|
89
|
-
- "ruby-2.4"
|
|
90
|
-
- "ruby-2.5"
|
|
91
|
-
- "ruby-2.6"
|
|
92
|
-
- "ruby-2.7"
|
|
93
|
-
- "ruby-3.0"
|
|
94
|
-
- "ruby-3.1"
|