fastlane 1.105.0 → 1.105.1
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/.DS_Store +0 -0
- data/lib/fastlane/.DS_Store +0 -0
- data/lib/fastlane/actions/.DS_Store +0 -0
- data/lib/fastlane/actions/download_dsyms.rb +3 -3
- data/lib/fastlane/actions/git_commit.rb +2 -4
- data/lib/fastlane/actions/latest_testflight_build_number.rb +20 -4
- data/lib/fastlane/actions/register_devices.rb +15 -5
- data/lib/fastlane/actions/set_changelog.rb +24 -1
- data/lib/fastlane/actions/update_project_team.rb +3 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +57 -24
- data/lib/assets/.DS_Store +0 -0
- data/lib/assets/completions/.DS_Store +0 -0
- data/lib/fastlane/actions/device_grid/.DS_Store +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1f8a7a963891485ea17a7c2378966843edc1020
|
|
4
|
+
data.tar.gz: 0fe97415457ee84f5449ced72a9b0a6091144653
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1d6f128985d6e684ae87f022d56556ef46259a6da92f1c467919e5c4cc6f76fe822c5ea9df861ef6e7367e3a7464cd5d06fbfe8762edf794c8b2b241f2ce45e
|
|
7
|
+
data.tar.gz: 18b3818bbc637888c7dcb4bdde104b259545c4e3d2da3f2196db6984147221599ec30ba3694be416ceb8f61f91dd0a3d791123b6a22900db377d8130a6e21106
|
data/lib/.DS_Store
CHANGED
|
Binary file
|
data/lib/fastlane/.DS_Store
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -117,7 +117,7 @@ module Fastlane
|
|
|
117
117
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
|
118
118
|
short_option: "-k",
|
|
119
119
|
env_name: "DOWNLOAD_DSYMS_TEAM_ID",
|
|
120
|
-
description: "The ID of your team if you're in multiple teams",
|
|
120
|
+
description: "The ID of your iTunes Connect team if you're in multiple teams",
|
|
121
121
|
optional: true,
|
|
122
122
|
is_string: false, # as we also allow integers, which we convert to strings anyway
|
|
123
123
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
|
|
@@ -127,11 +127,11 @@ module Fastlane
|
|
|
127
127
|
FastlaneCore::ConfigItem.new(key: :team_name,
|
|
128
128
|
short_option: "-e",
|
|
129
129
|
env_name: "DOWNLOAD_DSYMS_TEAM_NAME",
|
|
130
|
-
description: "The name of your team if you're in multiple teams",
|
|
130
|
+
description: "The name of your iTunes Connect team if you're in multiple teams",
|
|
131
131
|
optional: true,
|
|
132
132
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
|
|
133
133
|
verify_block: proc do |value|
|
|
134
|
-
ENV["FASTLANE_ITC_TEAM_NAME"] = value
|
|
134
|
+
ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s
|
|
135
135
|
end),
|
|
136
136
|
FastlaneCore::ConfigItem.new(key: :platform,
|
|
137
137
|
short_option: "-p",
|
|
@@ -61,10 +61,8 @@ module Fastlane
|
|
|
61
61
|
|
|
62
62
|
def self.example_code
|
|
63
63
|
[
|
|
64
|
-
'git_commit(path: "./version.txt",
|
|
65
|
-
|
|
66
|
-
'git_commit(path: ["./version.txt", "./changelog.txt"],
|
|
67
|
-
message: "Version Bump")'
|
|
64
|
+
'git_commit(path: "./version.txt", message: "Version Bump")',
|
|
65
|
+
'git_commit(path: ["./version.txt", "./changelog.txt"], message: "Version Bump")'
|
|
68
66
|
]
|
|
69
67
|
end
|
|
70
68
|
|
|
@@ -11,9 +11,11 @@ module Fastlane
|
|
|
11
11
|
require 'spaceship'
|
|
12
12
|
|
|
13
13
|
credentials = CredentialsManager::AccountManager.new(user: params[:username])
|
|
14
|
+
UI.message("Login to iTunes Connect (#{params[:username]})")
|
|
14
15
|
Spaceship::Tunes.login(credentials.user, credentials.password)
|
|
15
|
-
ENV["FASTLANE_ITC_TEAM_ID"] = params[:team_id]
|
|
16
16
|
Spaceship::Tunes.select_team
|
|
17
|
+
UI.message("Login successful")
|
|
18
|
+
|
|
17
19
|
app = Spaceship::Tunes::Application.find(params[:app_identifier])
|
|
18
20
|
|
|
19
21
|
version_number = params[:version]
|
|
@@ -87,10 +89,24 @@ module Fastlane
|
|
|
87
89
|
default_value: 1,
|
|
88
90
|
is_string: false),
|
|
89
91
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
+
short_option: "-k",
|
|
93
|
+
env_name: "LATEST_TESTFLIGHT_BUILD_NUMBER_TEAM_ID",
|
|
94
|
+
description: "The ID of your iTunes Connect team if you're in multiple teams",
|
|
95
|
+
optional: true,
|
|
96
|
+
is_string: false, # as we also allow integers, which we convert to strings anyway
|
|
92
97
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
|
|
93
|
-
|
|
98
|
+
verify_block: proc do |value|
|
|
99
|
+
ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s
|
|
100
|
+
end),
|
|
101
|
+
FastlaneCore::ConfigItem.new(key: :team_name,
|
|
102
|
+
short_option: "-e",
|
|
103
|
+
env_name: "LATEST_TESTFLIGHT_BUILD_NUMBER_TEAM_NAME",
|
|
104
|
+
description: "The name of your iTunes Connect team if you're in multiple teams",
|
|
105
|
+
optional: true,
|
|
106
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
|
|
107
|
+
verify_block: proc do |value|
|
|
108
|
+
ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s
|
|
109
|
+
end)
|
|
94
110
|
]
|
|
95
111
|
end
|
|
96
112
|
|
|
@@ -17,7 +17,6 @@ module Fastlane
|
|
|
17
17
|
|
|
18
18
|
credentials = CredentialsManager::AccountManager.new(user: params[:username])
|
|
19
19
|
Spaceship.login(credentials.user, credentials.password)
|
|
20
|
-
ENV["FASTLANE_TEAM_ID"] = params[:team_id]
|
|
21
20
|
Spaceship.select_team
|
|
22
21
|
|
|
23
22
|
if devices
|
|
@@ -72,10 +71,21 @@ module Fastlane
|
|
|
72
71
|
UI.user_error!("Could not find file '#{value}'") unless File.exist?(value)
|
|
73
72
|
end),
|
|
74
73
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
74
|
+
env_name: "REGISTER_DEVICES_TEAM_ID",
|
|
75
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
|
76
|
+
description: "The ID of your Developer Portal team if you're in multiple teams",
|
|
77
|
+
optional: true,
|
|
78
|
+
verify_block: proc do |value|
|
|
79
|
+
ENV["FASTLANE_TEAM_ID"] = value.to_s
|
|
80
|
+
end),
|
|
81
|
+
FastlaneCore::ConfigItem.new(key: :team_name,
|
|
82
|
+
env_name: "REGISTER_DEVICES_TEAM_NAME",
|
|
83
|
+
description: "The name of your Developer Portal team if you're in multiple teams",
|
|
84
|
+
optional: true,
|
|
85
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
|
|
86
|
+
verify_block: proc do |value|
|
|
87
|
+
ENV["FASTLANE_TEAM_NAME"] = value.to_s
|
|
88
|
+
end),
|
|
79
89
|
FastlaneCore::ConfigItem.new(key: :username,
|
|
80
90
|
env_name: "DELIVER_USER",
|
|
81
91
|
description: "Optional: Your Apple ID",
|
|
@@ -4,7 +4,11 @@ module Fastlane
|
|
|
4
4
|
def self.run(params)
|
|
5
5
|
require 'spaceship'
|
|
6
6
|
|
|
7
|
+
UI.message("Login to iTunes Connect (#{params[:username]})")
|
|
7
8
|
Spaceship::Tunes.login(params[:username])
|
|
9
|
+
Spaceship::Tunes.select_team
|
|
10
|
+
UI.message("Login successful")
|
|
11
|
+
|
|
8
12
|
app = Spaceship::Application.find(params[:app_identifier])
|
|
9
13
|
|
|
10
14
|
version_number = params[:version]
|
|
@@ -98,7 +102,26 @@ module Fastlane
|
|
|
98
102
|
FastlaneCore::ConfigItem.new(key: :changelog,
|
|
99
103
|
env_name: "FL_SET_CHANGELOG_CHANGELOG",
|
|
100
104
|
description: "Changelog text that should be uploaded to iTunes Connect",
|
|
101
|
-
optional: true)
|
|
105
|
+
optional: true),
|
|
106
|
+
FastlaneCore::ConfigItem.new(key: :team_id,
|
|
107
|
+
short_option: "-k",
|
|
108
|
+
env_name: "FL_SET_CHANGELOG_TEAM_ID",
|
|
109
|
+
description: "The ID of your iTunes Connect team if you're in multiple teams",
|
|
110
|
+
optional: true,
|
|
111
|
+
is_string: false, # as we also allow integers, which we convert to strings anyway
|
|
112
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
|
|
113
|
+
verify_block: proc do |value|
|
|
114
|
+
ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s
|
|
115
|
+
end),
|
|
116
|
+
FastlaneCore::ConfigItem.new(key: :team_name,
|
|
117
|
+
short_option: "-e",
|
|
118
|
+
env_name: "FL_SET_CHANGELOG_TEAM_NAME",
|
|
119
|
+
description: "The name of your iTunes Connect team if you're in multiple teams",
|
|
120
|
+
optional: true,
|
|
121
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
|
|
122
|
+
verify_block: proc do |value|
|
|
123
|
+
ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s
|
|
124
|
+
end)
|
|
102
125
|
]
|
|
103
126
|
end
|
|
104
127
|
|
|
@@ -12,7 +12,9 @@ module Fastlane
|
|
|
12
12
|
UI.message("Updating development team (#{params[:teamid]}) for the given project '#{path}'")
|
|
13
13
|
|
|
14
14
|
p = File.read(path)
|
|
15
|
-
|
|
15
|
+
p.gsub!(/DevelopmentTeam = .*;/, "DevelopmentTeam = #{team_id};")
|
|
16
|
+
p.gsub!(/DEVELOPMENT_TEAM = .*;/, "DEVELOPMENT_TEAM = #{team_id};")
|
|
17
|
+
File.write(path, p)
|
|
16
18
|
|
|
17
19
|
UI.success("Successfully updated project settings to use Developer Team ID '#{params[:teamid]}'")
|
|
18
20
|
end
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.105.
|
|
4
|
+
version: 1.105.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -15,7 +15,7 @@ authors:
|
|
|
15
15
|
autorequire:
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
|
-
date: 2016-10-
|
|
18
|
+
date: 2016-10-11 00:00:00.000000000 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: krausefx-shenzhen
|
|
@@ -24,6 +24,9 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.14.10
|
|
27
|
+
- - "<"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 1.0.0
|
|
27
30
|
type: :runtime
|
|
28
31
|
prerelease: false
|
|
29
32
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -31,20 +34,29 @@ dependencies:
|
|
|
31
34
|
- - ">="
|
|
32
35
|
- !ruby/object:Gem::Version
|
|
33
36
|
version: 0.14.10
|
|
37
|
+
- - "<"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 1.0.0
|
|
34
40
|
- !ruby/object:Gem::Dependency
|
|
35
41
|
name: slack-notifier
|
|
36
42
|
requirement: !ruby/object:Gem::Requirement
|
|
37
43
|
requirements:
|
|
38
|
-
- - "
|
|
44
|
+
- - ">="
|
|
39
45
|
- !ruby/object:Gem::Version
|
|
40
46
|
version: '1.3'
|
|
47
|
+
- - "<"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: 2.0.0
|
|
41
50
|
type: :runtime
|
|
42
51
|
prerelease: false
|
|
43
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
44
53
|
requirements:
|
|
45
|
-
- - "
|
|
54
|
+
- - ">="
|
|
46
55
|
- !ruby/object:Gem::Version
|
|
47
56
|
version: '1.3'
|
|
57
|
+
- - "<"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 2.0.0
|
|
48
60
|
- !ruby/object:Gem::Dependency
|
|
49
61
|
name: xcodeproj
|
|
50
62
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -83,58 +95,82 @@ dependencies:
|
|
|
83
95
|
name: terminal-notifier
|
|
84
96
|
requirement: !ruby/object:Gem::Requirement
|
|
85
97
|
requirements:
|
|
86
|
-
- - "
|
|
98
|
+
- - ">="
|
|
87
99
|
- !ruby/object:Gem::Version
|
|
88
100
|
version: 1.6.2
|
|
101
|
+
- - "<"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 2.0.0
|
|
89
104
|
type: :runtime
|
|
90
105
|
prerelease: false
|
|
91
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
92
107
|
requirements:
|
|
93
|
-
- - "
|
|
108
|
+
- - ">="
|
|
94
109
|
- !ruby/object:Gem::Version
|
|
95
110
|
version: 1.6.2
|
|
111
|
+
- - "<"
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: 2.0.0
|
|
96
114
|
- !ruby/object:Gem::Dependency
|
|
97
115
|
name: terminal-table
|
|
98
116
|
requirement: !ruby/object:Gem::Requirement
|
|
99
117
|
requirements:
|
|
100
|
-
- - "
|
|
118
|
+
- - ">="
|
|
101
119
|
- !ruby/object:Gem::Version
|
|
102
120
|
version: 1.4.5
|
|
121
|
+
- - "<"
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: 2.0.0
|
|
103
124
|
type: :runtime
|
|
104
125
|
prerelease: false
|
|
105
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
106
127
|
requirements:
|
|
107
|
-
- - "
|
|
128
|
+
- - ">="
|
|
108
129
|
- !ruby/object:Gem::Version
|
|
109
130
|
version: 1.4.5
|
|
131
|
+
- - "<"
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: 2.0.0
|
|
110
134
|
- !ruby/object:Gem::Dependency
|
|
111
135
|
name: plist
|
|
112
136
|
requirement: !ruby/object:Gem::Requirement
|
|
113
137
|
requirements:
|
|
114
|
-
- - "
|
|
138
|
+
- - ">="
|
|
115
139
|
- !ruby/object:Gem::Version
|
|
116
140
|
version: 3.1.0
|
|
141
|
+
- - "<"
|
|
142
|
+
- !ruby/object:Gem::Version
|
|
143
|
+
version: 4.0.0
|
|
117
144
|
type: :runtime
|
|
118
145
|
prerelease: false
|
|
119
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
120
147
|
requirements:
|
|
121
|
-
- - "
|
|
148
|
+
- - ">="
|
|
122
149
|
- !ruby/object:Gem::Version
|
|
123
150
|
version: 3.1.0
|
|
151
|
+
- - "<"
|
|
152
|
+
- !ruby/object:Gem::Version
|
|
153
|
+
version: 4.0.0
|
|
124
154
|
- !ruby/object:Gem::Dependency
|
|
125
155
|
name: addressable
|
|
126
156
|
requirement: !ruby/object:Gem::Requirement
|
|
127
157
|
requirements:
|
|
128
|
-
- - "
|
|
158
|
+
- - ">="
|
|
129
159
|
- !ruby/object:Gem::Version
|
|
130
160
|
version: '2.3'
|
|
161
|
+
- - "<"
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: 3.0.0
|
|
131
164
|
type: :runtime
|
|
132
165
|
prerelease: false
|
|
133
166
|
version_requirements: !ruby/object:Gem::Requirement
|
|
134
167
|
requirements:
|
|
135
|
-
- - "
|
|
168
|
+
- - ">="
|
|
136
169
|
- !ruby/object:Gem::Version
|
|
137
170
|
version: '2.3'
|
|
171
|
+
- - "<"
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: 3.0.0
|
|
138
174
|
- !ruby/object:Gem::Dependency
|
|
139
175
|
name: multipart-post
|
|
140
176
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -237,7 +273,7 @@ dependencies:
|
|
|
237
273
|
requirements:
|
|
238
274
|
- - ">="
|
|
239
275
|
- !ruby/object:Gem::Version
|
|
240
|
-
version: 0.
|
|
276
|
+
version: 0.35.0
|
|
241
277
|
- - "<"
|
|
242
278
|
- !ruby/object:Gem::Version
|
|
243
279
|
version: 1.0.0
|
|
@@ -247,7 +283,7 @@ dependencies:
|
|
|
247
283
|
requirements:
|
|
248
284
|
- - ">="
|
|
249
285
|
- !ruby/object:Gem::Version
|
|
250
|
-
version: 0.
|
|
286
|
+
version: 0.35.0
|
|
251
287
|
- - "<"
|
|
252
288
|
- !ruby/object:Gem::Version
|
|
253
289
|
version: 1.0.0
|
|
@@ -257,7 +293,7 @@ dependencies:
|
|
|
257
293
|
requirements:
|
|
258
294
|
- - ">="
|
|
259
295
|
- !ruby/object:Gem::Version
|
|
260
|
-
version: 1.14.
|
|
296
|
+
version: 1.14.2
|
|
261
297
|
- - "<"
|
|
262
298
|
- !ruby/object:Gem::Version
|
|
263
299
|
version: 2.0.0
|
|
@@ -267,7 +303,7 @@ dependencies:
|
|
|
267
303
|
requirements:
|
|
268
304
|
- - ">="
|
|
269
305
|
- !ruby/object:Gem::Version
|
|
270
|
-
version: 1.14.
|
|
306
|
+
version: 1.14.2
|
|
271
307
|
- - "<"
|
|
272
308
|
- !ruby/object:Gem::Version
|
|
273
309
|
version: 2.0.0
|
|
@@ -277,7 +313,7 @@ dependencies:
|
|
|
277
313
|
requirements:
|
|
278
314
|
- - ">="
|
|
279
315
|
- !ruby/object:Gem::Version
|
|
280
|
-
version: 1.16.
|
|
316
|
+
version: 1.16.2
|
|
281
317
|
- - "<"
|
|
282
318
|
- !ruby/object:Gem::Version
|
|
283
319
|
version: 2.0.0
|
|
@@ -287,7 +323,7 @@ dependencies:
|
|
|
287
323
|
requirements:
|
|
288
324
|
- - ">="
|
|
289
325
|
- !ruby/object:Gem::Version
|
|
290
|
-
version: 1.16.
|
|
326
|
+
version: 1.16.2
|
|
291
327
|
- - "<"
|
|
292
328
|
- !ruby/object:Gem::Version
|
|
293
329
|
version: 2.0.0
|
|
@@ -437,7 +473,7 @@ dependencies:
|
|
|
437
473
|
requirements:
|
|
438
474
|
- - ">="
|
|
439
475
|
- !ruby/object:Gem::Version
|
|
440
|
-
version: 0.13.
|
|
476
|
+
version: 0.13.1
|
|
441
477
|
- - "<"
|
|
442
478
|
- !ruby/object:Gem::Version
|
|
443
479
|
version: 1.0.0
|
|
@@ -447,7 +483,7 @@ dependencies:
|
|
|
447
483
|
requirements:
|
|
448
484
|
- - ">="
|
|
449
485
|
- !ruby/object:Gem::Version
|
|
450
|
-
version: 0.13.
|
|
486
|
+
version: 0.13.1
|
|
451
487
|
- - "<"
|
|
452
488
|
- !ruby/object:Gem::Version
|
|
453
489
|
version: 1.0.0
|
|
@@ -694,14 +730,12 @@ files:
|
|
|
694
730
|
- bin/fastlane
|
|
695
731
|
- "bin/\U0001F680"
|
|
696
732
|
- lib/.DS_Store
|
|
697
|
-
- lib/assets/.DS_Store
|
|
698
733
|
- lib/assets/Actions.md.erb
|
|
699
734
|
- lib/assets/AppfileTemplate
|
|
700
735
|
- lib/assets/AppfileTemplateAndroid
|
|
701
736
|
- lib/assets/AvailablePlugins.md.erb
|
|
702
737
|
- lib/assets/DefaultFastfileTemplate
|
|
703
738
|
- lib/assets/FastfileTemplateAndroid
|
|
704
|
-
- lib/assets/completions/.DS_Store
|
|
705
739
|
- lib/assets/completions/completion.bash
|
|
706
740
|
- lib/assets/completions/completion.sh
|
|
707
741
|
- lib/assets/completions/completion.zsh
|
|
@@ -755,7 +789,6 @@ files:
|
|
|
755
789
|
- lib/fastlane/actions/delete_keychain.rb
|
|
756
790
|
- lib/fastlane/actions/deliver.rb
|
|
757
791
|
- lib/fastlane/actions/deploygate.rb
|
|
758
|
-
- lib/fastlane/actions/device_grid/.DS_Store
|
|
759
792
|
- lib/fastlane/actions/device_grid/README.md
|
|
760
793
|
- lib/fastlane/actions/dotgpg_environment.rb
|
|
761
794
|
- lib/fastlane/actions/download.rb
|
|
@@ -980,7 +1013,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
980
1013
|
version: '0'
|
|
981
1014
|
requirements: []
|
|
982
1015
|
rubyforge_project:
|
|
983
|
-
rubygems_version: 2.
|
|
1016
|
+
rubygems_version: 2.5.1
|
|
984
1017
|
signing_key:
|
|
985
1018
|
specification_version: 4
|
|
986
1019
|
summary: The easiest way to automate building and releasing your iOS and Android apps
|
data/lib/assets/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|