deliver 1.1.3 → 1.2.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/lib/deliver/options.rb +16 -0
- data/lib/deliver/upload_metadata.rb +4 -1
- data/lib/deliver/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8de50e3c9568cad327e1bd82a526d30870f4b1e8
|
|
4
|
+
data.tar.gz: 37341d776f431ce8db2159acc0431c63d7ffe861
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd2aa332759b58f5b40ca5bf208b247ef5ba799b14e1440d5916970cfb9a3fdebf3436f464801b6e6794c55213f1480d0254936a70d6c2449feb291be4b76908
|
|
7
|
+
data.tar.gz: 377239b30b6a131ffba969489b6dae77e0591763f83ecb479e1c3b9efee652b2ffbaa9d98c2436ffce46ac69a294dd22a860aa3f173b6afb1c4f95258491667b
|
data/lib/deliver/options.rb
CHANGED
|
@@ -110,6 +110,22 @@ module Deliver
|
|
|
110
110
|
description: "Metadata: The english name of the secondary category(e.g. `Business`, `Books`)",
|
|
111
111
|
optional: true,
|
|
112
112
|
is_string: true),
|
|
113
|
+
FastlaneCore::ConfigItem.new(key: :primary_first_sub_category,
|
|
114
|
+
description: "Metadata: The english name of the primary first sub category(e.g. `Educational`, `Puzzle`)",
|
|
115
|
+
optional: true,
|
|
116
|
+
is_string: true),
|
|
117
|
+
FastlaneCore::ConfigItem.new(key: :primary_second_sub_category,
|
|
118
|
+
description: "Metadata: The english name of the primary second sub category(e.g. `Educational`, `Puzzle`)",
|
|
119
|
+
optional: true,
|
|
120
|
+
is_string: true),
|
|
121
|
+
FastlaneCore::ConfigItem.new(key: :secondary_first_sub_category,
|
|
122
|
+
description: "Metadata: The english name of the secondary first sub category(e.g. `Educational`, `Puzzle`)",
|
|
123
|
+
optional: true,
|
|
124
|
+
is_string: true),
|
|
125
|
+
FastlaneCore::ConfigItem.new(key: :secondary_second_sub_category,
|
|
126
|
+
description: "Metadata: The english name of the secondary second sub category(e.g. `Educational`, `Puzzle`)",
|
|
127
|
+
optional: true,
|
|
128
|
+
is_string: true),
|
|
113
129
|
FastlaneCore::ConfigItem.new(key: :app_review_information,
|
|
114
130
|
description: "Metadata: A hash containing the review information",
|
|
115
131
|
optional: true,
|
|
@@ -11,7 +11,10 @@ module Deliver
|
|
|
11
11
|
LOCALISED_APP_VALUES = [:name, :privacy_url]
|
|
12
12
|
|
|
13
13
|
# Non localized app details values
|
|
14
|
-
NON_LOCALISED_APP_VALUES = [:primary_category, :secondary_category
|
|
14
|
+
NON_LOCALISED_APP_VALUES = [:primary_category, :secondary_category,
|
|
15
|
+
:primary_first_sub_category, :primary_second_sub_category,
|
|
16
|
+
:secondary_first_sub_category, :secondary_first_sub_category
|
|
17
|
+
]
|
|
15
18
|
|
|
16
19
|
# Make sure to call `load_from_filesystem` before calling upload
|
|
17
20
|
def upload(options)
|
data/lib/deliver/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deliver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -254,7 +254,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
254
254
|
version: '0'
|
|
255
255
|
requirements: []
|
|
256
256
|
rubyforge_project:
|
|
257
|
-
rubygems_version: 2.4.
|
|
257
|
+
rubygems_version: 2.4.5
|
|
258
258
|
signing_key:
|
|
259
259
|
specification_version: 4
|
|
260
260
|
summary: Upload screenshots, metadata and your app to the App Store using a single
|