platform-api 3.5.0 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +18 -0
- data/CHANGELOG.md +8 -0
- data/Rakefile +2 -1
- data/lib/platform-api/client.rb +452 -187
- data/lib/platform-api/version.rb +1 -1
- data/platform-api.gemspec +1 -1
- data/schema.json +343 -112
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4df90c15a3a7108112d47c4a8912f2c0cc0c133f220f9b7b18a90f5f81b8eb84
|
4
|
+
data.tar.gz: 6466930cc95ffab375021eb6a3442aaf320d72cfaec9f2f8b78548c9798ffbaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63e2ae18a43482dc82198b1b189048820530d0ec59d17b4a9f8836b7cfe5e9e448b772bfc7f063455abc2b15c7c05a67feb8eae72bfa57dc0bb31c54e2af2d57
|
7
|
+
data.tar.gz: 7787d7c3d99164a0d6737250f66b29e0fb1a755292a67c5e62da8c84452ab7bcfac1380318bc1e5ed3b4cd54c7e7bd83484134eb1accf9c6014c17b7144eb995
|
data/.circleci/config.yml
CHANGED
@@ -63,6 +63,22 @@ jobs:
|
|
63
63
|
- <<: *bundle
|
64
64
|
- <<: *hatchet_setup
|
65
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
|
66
82
|
|
67
83
|
workflows:
|
68
84
|
version: 2
|
@@ -74,3 +90,5 @@ workflows:
|
|
74
90
|
- "ruby-2.5"
|
75
91
|
- "ruby-2.6"
|
76
92
|
- "ruby-2.7"
|
93
|
+
- "ruby-3.0"
|
94
|
+
- "ruby-3.1"
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -15,9 +15,10 @@ task :publish_docs => [:build] do
|
|
15
15
|
sh 'rake yard'
|
16
16
|
sh 'cp -R doc /tmp/platform-api-doc'
|
17
17
|
sh 'git checkout gh-pages'
|
18
|
+
sh 'rm -rf *'
|
18
19
|
sh 'cp -R /tmp/platform-api-doc/* .'
|
19
20
|
sh 'rm -rf /tmp/platform-api-doc'
|
20
|
-
sh 'git add .'
|
21
|
+
sh 'git add -A .'
|
21
22
|
sh 'git commit -am "Rebuild documentation"'
|
22
23
|
sh 'git push origin gh-pages'
|
23
24
|
sh 'git checkout master'
|