app_store_connect_jwt 0.7.0 → 0.8.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/.codeclimate.yml +6 -0
- data/.github/workflows/lint.yml +20 -0
- data/.github/workflows/{publish.yml → push.yml} +1 -1
- data/.github/workflows/test.yml +2 -2
- data/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/README.md +22 -9
- data/_config.yml +2 -0
- data/docs/AppStoreConnect.html +117 -0
- data/docs/AppStoreConnect/JWT.html +421 -0
- data/docs/AppStoreConnect/JWT/CLI.html +127 -0
- data/docs/AppStoreConnect/JWT/Utils.html +641 -0
- data/docs/_index.html +152 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.README.html +113 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +113 -0
- data/docs/js/app.js +303 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +107 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/app_store_connect/jwt/version.rb +1 -1
- data/lib/tasks/push.rake +8 -8
- metadata +23 -3
data/lib/tasks/push.rake
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
|
3
3
|
require 'app_store_connect/jwt/version'
|
4
4
|
|
5
|
-
|
6
|
-
rubygems: 'https://rubygems.org',
|
7
|
-
github: 'https://rubygems.pkg.github.com/kyledecot'
|
8
|
-
}.freeze
|
5
|
+
version = AppStoreConnect::JWT::VERSION
|
9
6
|
|
10
|
-
desc "Push app_store_connect_jwt-#{
|
7
|
+
desc "Push app_store_connect_jwt-#{version}.gem"
|
11
8
|
task :push, [:key] do |_task, args|
|
12
9
|
args.with_defaults(key: 'rubygems')
|
13
10
|
|
14
|
-
key = args.key
|
15
|
-
host =
|
11
|
+
key = args.key.to_sym
|
12
|
+
host = {
|
13
|
+
rubygems: 'https://rubygems.org',
|
14
|
+
github: 'https://rubygems.pkg.github.com/kyledecot'
|
15
|
+
}.fetch(key)
|
16
16
|
|
17
|
-
sh %(gem push --key=#{key} --host=#{host} app_store_connect_jwt-#{
|
17
|
+
sh %(gem push --key=#{key} --host=#{host} app_store_connect_jwt-#{version}.gem)
|
18
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: app_store_connect_jwt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Decot
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -158,11 +158,12 @@ executables:
|
|
158
158
|
extensions: []
|
159
159
|
extra_rdoc_files: []
|
160
160
|
files:
|
161
|
+
- ".codeclimate.yml"
|
161
162
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
162
163
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
163
164
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
164
165
|
- ".github/workflows/lint.yml"
|
165
|
-
- ".github/workflows/
|
166
|
+
- ".github/workflows/push.yml"
|
166
167
|
- ".github/workflows/test.yml"
|
167
168
|
- ".gitignore"
|
168
169
|
- ".rspec"
|
@@ -176,8 +177,27 @@ files:
|
|
176
177
|
- LICENSE.txt
|
177
178
|
- README.md
|
178
179
|
- Rakefile
|
180
|
+
- _config.yml
|
179
181
|
- app_store_connect_jwt.gemspec
|
180
182
|
- bin/setup
|
183
|
+
- docs/AppStoreConnect.html
|
184
|
+
- docs/AppStoreConnect/JWT.html
|
185
|
+
- docs/AppStoreConnect/JWT/CLI.html
|
186
|
+
- docs/AppStoreConnect/JWT/Utils.html
|
187
|
+
- docs/_index.html
|
188
|
+
- docs/class_list.html
|
189
|
+
- docs/css/common.css
|
190
|
+
- docs/css/full_list.css
|
191
|
+
- docs/css/style.css
|
192
|
+
- docs/file.README.html
|
193
|
+
- docs/file_list.html
|
194
|
+
- docs/frames.html
|
195
|
+
- docs/index.html
|
196
|
+
- docs/js/app.js
|
197
|
+
- docs/js/full_list.js
|
198
|
+
- docs/js/jquery.js
|
199
|
+
- docs/method_list.html
|
200
|
+
- docs/top-level-namespace.html
|
181
201
|
- exe/app-store-connect-jwt
|
182
202
|
- lib/app_store_connect.rb
|
183
203
|
- lib/app_store_connect/jwt.rb
|