fastlane 2.23.0 → 2.24.0.beta.20170325010032
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4da0188d70f1c82ed98e961d6000101cc022fa64
|
4
|
+
data.tar.gz: 7d6ddc6fbbc017bc190e8714d3dfdc9cc2b72690
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20890b23d73343e1306dea19afa46a752481e0043ef22e3fabe2b3f5896c8401f84ec1780d10ec304502d0483c24a75432401eb9cce015e7afcfd3fdc8cde1ba
|
7
|
+
data.tar.gz: c91d1a60513d3cbd4d9a6ff5a5f6d4bb771339316ea10b504d8cc2d1a87f40c00c31ea813030eab9fdfde5c356a2a85eb300defc3041fe4eed814acd5d099446
|
@@ -6,10 +6,15 @@ module Fastlane
|
|
6
6
|
|
7
7
|
params[:output_path] ||= "#{params[:path]}.zip"
|
8
8
|
|
9
|
+
absolute_output_path = File.expand_path(params[:output_path])
|
10
|
+
|
11
|
+
absolute_output_dir = File.expand_path("..", absolute_output_path)
|
12
|
+
FileUtils.mkdir_p(absolute_output_dir)
|
13
|
+
|
9
14
|
Dir.chdir(File.expand_path("..", params[:path])) do # required to properly zip
|
10
15
|
zip_options = params[:verbose] ? "r" : "rq"
|
11
16
|
|
12
|
-
Actions.sh "zip -#{zip_options} #{
|
17
|
+
Actions.sh "zip -#{zip_options} #{absolute_output_path.shellescape} #{File.basename(params[:path]).shellescape}"
|
13
18
|
end
|
14
19
|
|
15
20
|
UI.success "Successfully generated zip file at path '#{File.expand_path(params[:output_path])}'"
|
@@ -177,7 +177,7 @@ module Fastlane
|
|
177
177
|
c.action do |args, options|
|
178
178
|
if ensure_fastfile
|
179
179
|
ff = Fastlane::FastFile.new(File.join(FastlaneCore::FastlaneFolder.path || '.', 'Fastfile'))
|
180
|
-
UI.message "You don't need to run `fastlane docs` manually any more, this will be done automatically for you."
|
180
|
+
UI.message "You don't need to run `fastlane docs` manually any more, this will be done automatically for you when running a lane."
|
181
181
|
Fastlane::DocsGenerator.run(ff)
|
182
182
|
end
|
183
183
|
end
|
@@ -146,9 +146,15 @@ module FastlaneCore
|
|
146
146
|
end
|
147
147
|
|
148
148
|
def self.determine_version(name)
|
149
|
-
|
150
|
-
|
149
|
+
unless name.to_s.start_with?("fastlane-plugin")
|
150
|
+
# In the early days before the mono gem this was more complicated
|
151
|
+
# Now we have a mono version number, which makes this method easy
|
152
|
+
# for all built-in actions and tools
|
153
|
+
require 'fastlane/version'
|
154
|
+
return Fastlane::VERSION
|
155
|
+
end
|
151
156
|
|
157
|
+
# For plugins we still need to load the specific version
|
152
158
|
begin
|
153
159
|
name = name.to_s.downcase
|
154
160
|
|
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: 2.
|
4
|
+
version: 2.24.0.beta.20170325010032
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -14,7 +14,7 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date: 2017-03-
|
17
|
+
date: 2017-03-25 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: slack-notifier
|
@@ -1296,23 +1296,23 @@ metadata:
|
|
1296
1296
|
post_install_message:
|
1297
1297
|
rdoc_options: []
|
1298
1298
|
require_paths:
|
1299
|
-
-
|
1300
|
-
-
|
1299
|
+
- frameit/lib
|
1300
|
+
- produce/lib
|
1301
|
+
- sigh/lib
|
1302
|
+
- supply/lib
|
1303
|
+
- fastlane_core/lib
|
1304
|
+
- snapshot/lib
|
1301
1305
|
- deliver/lib
|
1306
|
+
- cert/lib
|
1302
1307
|
- fastlane/lib
|
1303
|
-
-
|
1304
|
-
-
|
1308
|
+
- credentials_manager/lib
|
1309
|
+
- spaceship/lib
|
1305
1310
|
- gym/lib
|
1306
1311
|
- match/lib
|
1307
|
-
- pem/lib
|
1308
1312
|
- pilot/lib
|
1309
|
-
- produce/lib
|
1310
|
-
- scan/lib
|
1311
1313
|
- screengrab/lib
|
1312
|
-
-
|
1313
|
-
-
|
1314
|
-
- spaceship/lib
|
1315
|
-
- supply/lib
|
1314
|
+
- scan/lib
|
1315
|
+
- pem/lib
|
1316
1316
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1317
1317
|
requirements:
|
1318
1318
|
- - ">="
|
@@ -1320,15 +1320,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1320
1320
|
version: 2.0.0
|
1321
1321
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1322
1322
|
requirements:
|
1323
|
-
- - "
|
1323
|
+
- - ">"
|
1324
1324
|
- !ruby/object:Gem::Version
|
1325
|
-
version:
|
1325
|
+
version: 1.3.1
|
1326
1326
|
requirements: []
|
1327
1327
|
rubyforge_project:
|
1328
|
-
rubygems_version: 2.
|
1328
|
+
rubygems_version: 2.4.5.2
|
1329
1329
|
signing_key:
|
1330
1330
|
specification_version: 4
|
1331
1331
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1332
1332
|
Android apps
|
1333
1333
|
test_files: []
|
1334
|
-
has_rdoc:
|