app_store_connect_jwt 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/tasks/push.rake CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  require 'app_store_connect/jwt/version'
4
4
 
5
- HOSTS_BY_KEY = {
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-#{AppStoreConnect::JWT::VERSION}.gem"
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 = HOSTS_BY_KEY.fetch(args.key.to_sym)
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-#{AppStoreConnect::JWT::VERSION}.gem)
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.7.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-01 00:00:00.000000000 Z
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/publish.yml"
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