fastlane 2.59.0 → 2.60.0.beta.20170926010004
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff4b6d79ec626fc6e321c6bef032ebcbaae35c0b
|
4
|
+
data.tar.gz: d67355d16be7ddd0d3d17d7eaafd96a2c040ab86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3bc2d0c9a5c63d7fef38da8c3b7707e694c3d897105eefefaaa63cac5b1503e9bff34f493bdb70862f3d0301912b8556cb2bd57319c3998a959c88979dbbb48
|
7
|
+
data.tar.gz: 6a10cce75ec753106f48b35b79147429c394e7574d50ab60989601dae475e35b970d10415e30c783be318f1567c679c50626f5e325ae6a64394d584bdf55992f
|
@@ -83,7 +83,8 @@ module Fastlane
|
|
83
83
|
def self.details
|
84
84
|
[
|
85
85
|
"This is useful if you have only one changelog for all languages.",
|
86
|
-
"You can store the changelog in `#{default_changelog_path}` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same \"What's new\"-text for all languages."
|
86
|
+
"You can store the changelog in `#{default_changelog_path}` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same \"What's new\"-text for all languages.",
|
87
|
+
"Defining the version is optional, fastlane will try to automatically detect it if you don't provide one"
|
87
88
|
].join("\n")
|
88
89
|
end
|
89
90
|
|
@@ -142,7 +143,8 @@ module Fastlane
|
|
142
143
|
|
143
144
|
def self.example_code
|
144
145
|
[
|
145
|
-
'set_changelog(
|
146
|
+
'set_changelog(changelog: "Changelog for all Languages")',
|
147
|
+
'set_changelog(app_identifier: "com.krausefx.app", version: "1.0", changelog: "Changelog for all Languages")'
|
146
148
|
]
|
147
149
|
end
|
148
150
|
|
@@ -159,9 +159,16 @@ module Fastlane
|
|
159
159
|
UI.crash!('No key given') unless key
|
160
160
|
|
161
161
|
return false if self.runner.lanes.fetch(nil, {}).fetch(key.to_sym, nil)
|
162
|
-
return true if self.runner.lanes[key.to_sym].kind_of?
|
163
|
-
|
164
|
-
|
162
|
+
return true if self.runner.lanes[key.to_sym].kind_of?(Hash)
|
163
|
+
|
164
|
+
if key.to_sym == :update
|
165
|
+
# The user ran `fastlane update`, instead of `fastlane update_fastlane`
|
166
|
+
# We're gonna be nice and understand what the user is trying to do
|
167
|
+
require 'fastlane/one_off'
|
168
|
+
Fastlane::OneOff.run(action: "update_fastlane", parameters: {})
|
169
|
+
else
|
170
|
+
UI.user_error!("Could not find '#{key}'. Available lanes: #{self.runner.available_lanes.join(', ')}")
|
171
|
+
end
|
165
172
|
end
|
166
173
|
|
167
174
|
def actions_path(path)
|
data/scan/lib/scan/options.rb
CHANGED
@@ -72,7 +72,7 @@ module Scan
|
|
72
72
|
is_string: false,
|
73
73
|
default_value: false),
|
74
74
|
FastlaneCore::ConfigItem.new(key: :code_coverage,
|
75
|
-
description: "Should code coverage be generated (Xcode 7
|
75
|
+
description: "Should code coverage be generated? (Xcode 7 and up)",
|
76
76
|
is_string: false,
|
77
77
|
optional: true),
|
78
78
|
FastlaneCore::ConfigItem.new(key: :address_sanitizer,
|
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.60.0.beta.20170926010004
|
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: 2017-09-
|
18
|
+
date: 2017-09-26 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -828,8 +828,6 @@ files:
|
|
828
828
|
- deliver/lib/deliver/upload_price_tier.rb
|
829
829
|
- deliver/lib/deliver/upload_screenshots.rb
|
830
830
|
- fastlane/README.md
|
831
|
-
- fastlane/lib/.DS_Store
|
832
|
-
- fastlane/lib/assets/.DS_Store
|
833
831
|
- fastlane/lib/assets/ActionDetails.md.erb
|
834
832
|
- fastlane/lib/assets/Actions.md.erb
|
835
833
|
- fastlane/lib/assets/AppfileTemplate
|
@@ -1445,24 +1443,24 @@ metadata:
|
|
1445
1443
|
post_install_message:
|
1446
1444
|
rdoc_options: []
|
1447
1445
|
require_paths:
|
1448
|
-
-
|
1449
|
-
-
|
1450
|
-
-
|
1446
|
+
- spaceship/lib
|
1447
|
+
- scan/lib
|
1448
|
+
- sigh/lib
|
1449
|
+
- snapshot/lib
|
1450
|
+
- screengrab/lib
|
1451
1451
|
- fastlane/lib
|
1452
|
-
-
|
1453
|
-
-
|
1452
|
+
- cert/lib
|
1453
|
+
- pem/lib
|
1454
1454
|
- gym/lib
|
1455
|
+
- produce/lib
|
1456
|
+
- deliver/lib
|
1457
|
+
- supply/lib
|
1455
1458
|
- match/lib
|
1456
|
-
-
|
1459
|
+
- frameit/lib
|
1460
|
+
- credentials_manager/lib
|
1457
1461
|
- pilot/lib
|
1458
1462
|
- precheck/lib
|
1459
|
-
-
|
1460
|
-
- scan/lib
|
1461
|
-
- screengrab/lib
|
1462
|
-
- sigh/lib
|
1463
|
-
- snapshot/lib
|
1464
|
-
- spaceship/lib
|
1465
|
-
- supply/lib
|
1463
|
+
- fastlane_core/lib
|
1466
1464
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1467
1465
|
requirements:
|
1468
1466
|
- - ">="
|
@@ -1470,15 +1468,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1470
1468
|
version: 2.0.0
|
1471
1469
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1472
1470
|
requirements:
|
1473
|
-
- - "
|
1471
|
+
- - ">"
|
1474
1472
|
- !ruby/object:Gem::Version
|
1475
|
-
version:
|
1473
|
+
version: 1.3.1
|
1476
1474
|
requirements: []
|
1477
1475
|
rubyforge_project:
|
1478
|
-
rubygems_version: 2.
|
1476
|
+
rubygems_version: 2.4.5.1
|
1479
1477
|
signing_key:
|
1480
1478
|
specification_version: 4
|
1481
1479
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1482
1480
|
Android apps
|
1483
1481
|
test_files: []
|
1484
|
-
has_rdoc:
|
data/fastlane/lib/.DS_Store
DELETED
Binary file
|
Binary file
|