fastlane 2.118.0.beta.20190310200100 → 2.118.0.beta.20190311200036
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/action.rb +8 -0
- data/fastlane/lib/fastlane/actions/hockey.rb +12 -2
- data/fastlane/lib/fastlane/documentation/actions_list.rb +5 -8
- data/fastlane/lib/fastlane/runner.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/snapshot/lib/assets/SnapshotHelper.swift +2 -2
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8217f7118c462c1d517add96ecb5f4f63895569a
|
4
|
+
data.tar.gz: 7b29ed71ba59fb055b7496ab20a51aa4e2da287e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a684426d439978cb28655031034aad85bb6da6c5c63cc1ff62d2d7adc05d753cc45fd7cdc33039a0801b94d2c9e361d032e1359dc566c08412a87d30d1d289a
|
7
|
+
data.tar.gz: 56c0dfbbe0aea5ca2afc0f49329e6eee133b079bacb59d228df6b3be377a4fe2a5a286082d329272cc865c1c3f3601a5c36ede75face901ae642015eb39aa6c3
|
@@ -187,4 +187,12 @@ class String
|
|
187
187
|
|
188
188
|
self.gsub!(/^#{first_line_indent}/, "")
|
189
189
|
end
|
190
|
+
|
191
|
+
def remove_markdown
|
192
|
+
string = self.gsub(/^>/, "") # remove Markdown quotes
|
193
|
+
string = string.gsub(/\[http[^\]]+\]\(([^)]+)\)/, '\1 🔗') # remove Markdown links
|
194
|
+
string = string.gsub(/\[([^\]]+)\]\(([^\)]+)\)/, '"\1" (\2 🔗)') # remove Markdown links with custom text
|
195
|
+
string = string.gsub("|", "") # remove new line preserve markers
|
196
|
+
return string
|
197
|
+
end
|
190
198
|
end
|
@@ -183,7 +183,7 @@ module Fastlane
|
|
183
183
|
end
|
184
184
|
|
185
185
|
def self.description
|
186
|
-
"
|
186
|
+
"Refer to [App Center](https://github.com/Microsoft/fastlane-plugin-appcenter/)"
|
187
187
|
end
|
188
188
|
|
189
189
|
def self.available_options
|
@@ -356,6 +356,9 @@ module Fastlane
|
|
356
356
|
|
357
357
|
def self.details
|
358
358
|
[
|
359
|
+
"HockeyApp will be no longer supported and will be transitioned into App Center on November 16, 2019.",
|
360
|
+
"Please migrate over to [App Center](https://github.com/Microsoft/fastlane-plugin-appcenter/)",
|
361
|
+
"",
|
359
362
|
"Symbols will also be uploaded automatically if a `app.dSYM.zip` file is found next to `app.ipa`. In case it is located in a different place you can specify the path explicitly in the `:dsym` parameter.",
|
360
363
|
"More information about the available options can be found in the [HockeyApp Docs](http://support.hockeyapp.net/kb/api/api-versions#upload-version)."
|
361
364
|
].join("\n")
|
@@ -388,7 +391,14 @@ module Fastlane
|
|
388
391
|
end
|
389
392
|
|
390
393
|
def self.category
|
391
|
-
:
|
394
|
+
:deprecated
|
395
|
+
end
|
396
|
+
|
397
|
+
def self.deprecated_notes
|
398
|
+
[
|
399
|
+
"HockeyApp will be no longer supported and will be transitioned into App Center on November 16, 2019.",
|
400
|
+
"Please migrate over to [App Center](https://github.com/Microsoft/fastlane-plugin-appcenter/)"
|
401
|
+
].join("\n")
|
392
402
|
end
|
393
403
|
end
|
394
404
|
# rubocop:enable Metrics/ClassLength
|
@@ -21,7 +21,7 @@ module Fastlane
|
|
21
21
|
end
|
22
22
|
|
23
23
|
if action < Action
|
24
|
-
current << action.description if action.description
|
24
|
+
current << action.description.to_s.remove_markdown if action.description
|
25
25
|
|
26
26
|
authors = Array(action.author || action.authors)
|
27
27
|
current << authors.first.green if authors.count == 1
|
@@ -64,7 +64,7 @@ module Fastlane
|
|
64
64
|
if Fastlane::Actions.is_deprecated?(action)
|
65
65
|
puts("==========================================".deprecated)
|
66
66
|
puts("This action (#{filter}) is deprecated".deprecated)
|
67
|
-
puts(action.deprecated_notes.to_s.deprecated) if action.deprecated_notes
|
67
|
+
puts(action.deprecated_notes.to_s.remove_markdown.deprecated) if action.deprecated_notes
|
68
68
|
puts("==========================================\n".deprecated)
|
69
69
|
end
|
70
70
|
|
@@ -107,16 +107,13 @@ module Fastlane
|
|
107
107
|
rows = []
|
108
108
|
|
109
109
|
if action.description
|
110
|
-
|
110
|
+
description = action.description.to_s.remove_markdown
|
111
|
+
rows << [description]
|
111
112
|
rows << [' ']
|
112
113
|
end
|
113
114
|
|
114
115
|
if action.details
|
115
|
-
details = action.details
|
116
|
-
details.gsub!(/^>/, "") # remove Markdown quotes
|
117
|
-
details.gsub!(/\[http[^\]]+\]\(([^)]+)\)/, '\1 🔗') # remove Markdown links
|
118
|
-
details.gsub!(/\[([^\]]+)\]\(([^\)]+)\)/, '"\1" (\2 🔗)') # remove Markdown links with custom text
|
119
|
-
details.gsub!("|", "") # remove new line preserve markers
|
116
|
+
details = action.details.to_s.remove_markdown
|
120
117
|
details.split("\n").each do |detail|
|
121
118
|
row = detail.empty? ? ' ' : detail
|
122
119
|
rows << [row]
|
@@ -246,7 +246,7 @@ module Fastlane
|
|
246
246
|
if Fastlane::Actions.is_deprecated?(class_ref)
|
247
247
|
puts("==========================================".deprecated)
|
248
248
|
puts("This action (#{method_sym}) is deprecated".deprecated)
|
249
|
-
puts(class_ref.deprecated_notes.to_s.deprecated) if class_ref.deprecated_notes
|
249
|
+
puts(class_ref.deprecated_notes.to_s.remove_markdown.deprecated) if class_ref.deprecated_notes
|
250
250
|
puts("==========================================\n".deprecated)
|
251
251
|
end
|
252
252
|
class_ref.runner = self # needed to call another action form an action
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.118.0.beta.
|
2
|
+
VERSION = '2.118.0.beta.20190311200036'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -115,7 +115,7 @@ open class Snapshot: NSObject {
|
|
115
115
|
print("Couldn't detect/set locale...")
|
116
116
|
}
|
117
117
|
|
118
|
-
if locale.isEmpty {
|
118
|
+
if locale.isEmpty && !deviceLanguage.isEmpty {
|
119
119
|
locale = Locale(identifier: deviceLanguage).identifier
|
120
120
|
}
|
121
121
|
|
@@ -277,4 +277,4 @@ private extension CGFloat {
|
|
277
277
|
|
278
278
|
// Please don't remove the lines below
|
279
279
|
// They are used to detect outdated configuration files
|
280
|
-
// SnapshotHelperVersion [1.
|
280
|
+
// SnapshotHelperVersion [1.14]
|
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.118.0.beta.
|
4
|
+
version: 2.118.0.beta.20190311200036
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jimmy Dee
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-03-
|
30
|
+
date: 2019-03-11 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1687,24 +1687,24 @@ metadata:
|
|
1687
1687
|
post_install_message:
|
1688
1688
|
rdoc_options: []
|
1689
1689
|
require_paths:
|
1690
|
-
-
|
1691
|
-
- match/lib
|
1692
|
-
- fastlane_core/lib
|
1693
|
-
- cert/lib
|
1690
|
+
- pem/lib
|
1694
1691
|
- supply/lib
|
1695
|
-
-
|
1696
|
-
-
|
1692
|
+
- screengrab/lib
|
1693
|
+
- gym/lib
|
1697
1694
|
- snapshot/lib
|
1695
|
+
- match/lib
|
1696
|
+
- fastlane_core/lib
|
1698
1697
|
- scan/lib
|
1699
|
-
-
|
1700
|
-
-
|
1698
|
+
- cert/lib
|
1699
|
+
- sigh/lib
|
1701
1700
|
- deliver/lib
|
1702
1701
|
- fastlane/lib
|
1703
|
-
-
|
1704
|
-
-
|
1705
|
-
-
|
1706
|
-
- credentials_manager/lib
|
1702
|
+
- pilot/lib
|
1703
|
+
- precheck/lib
|
1704
|
+
- produce/lib
|
1707
1705
|
- frameit/lib
|
1706
|
+
- spaceship/lib
|
1707
|
+
- credentials_manager/lib
|
1708
1708
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1709
1709
|
requirements:
|
1710
1710
|
- - ">="
|