fastlane 1.96.0 → 1.97.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/assets/s3_html_template.erb +1 -1
- data/lib/fastlane/actions/skip_docs.rb +4 -0
- data/lib/fastlane/setup/crashlytics_beta.rb +19 -3
- data/lib/fastlane/version.rb +1 -1
- metadata +4 -5
- data/lib/.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: c8b81eef91990483f60fddd43cfe9aebd1194fd7
|
4
|
+
data.tar.gz: cb06e49f237876fac0b46f2ae765c5f0459b8508
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1273363b9051d21345fffce2ad75c9115757b4900d6cc7aa09bcd6f450a1cb3319972d62658db2cca23800e07f6a9ceaf288ab01bf465b9e1ec50d6e273e8ffe
|
7
|
+
data.tar.gz: ed8989a099266c334a413dba9ab2f26afb5d274e540b9231f99b11d20aa9cb447e1acf1b37811b6a5d1e04e63e5804df997ff1f262f43199cc359ccab15fc2a8
|
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
<div class="oneRow">
|
56
56
|
<span class="download" id="ios">
|
57
|
-
<a href="itms-services://?action=download-manifest&url
|
57
|
+
<a href="itms-services://?action=download-manifest&url=<%= plist_url %>" id="text" class="btn btn-lg btn-default" onclick="document.getElementById('finished').id = '';">
|
58
58
|
Install <%= title %> <%= bundle_version %>
|
59
59
|
</a>
|
60
60
|
</span>
|
@@ -14,7 +14,13 @@ module Fastlane
|
|
14
14
|
fastfile = fastfile_template(keys[:api_key], keys[:build_secret], project.schemes.first)
|
15
15
|
FileUtils.mkdir_p('fastlane')
|
16
16
|
File.write('fastlane/Fastfile', fastfile)
|
17
|
+
UI.success('A Fastfile has been generated for you at ./fastlane/Fastfile 🚀')
|
17
18
|
end
|
19
|
+
UI.header('Next Steps')
|
20
|
+
UI.success('Run `fastlane beta` to build and upload to Beta by Crashlytics. 🎯')
|
21
|
+
UI.success('After submitting your beta, visit https://fabric.io/_/beta to add release notes and notify testers.')
|
22
|
+
UI.success('You can edit your Fastfile to distribute and notify testers automatically.')
|
23
|
+
UI.success('Learn more here: https://github.com/fastlane/setups/blob/master/samples-ios/distribute-beta-build.md 🚀')
|
18
24
|
end
|
19
25
|
|
20
26
|
def keys_from_project(project)
|
@@ -34,7 +40,9 @@ module Fastlane
|
|
34
40
|
build_secret: script_array[2]
|
35
41
|
}
|
36
42
|
else
|
37
|
-
UI.important('
|
43
|
+
UI.important('fastlane was unable to detect your Fabric API Key and Build Secret. 🔑')
|
44
|
+
UI.important('Navigate to https://www.fabric.io/settings/organizations, select the appropriate organization,')
|
45
|
+
UI.important('and copy the API Key and Build Secret.')
|
38
46
|
keys = {}
|
39
47
|
loop do
|
40
48
|
keys[:api_key] = UI.input('API Key:')
|
@@ -67,7 +75,11 @@ module Fastlane
|
|
67
75
|
lane :beta do
|
68
76
|
gym(scheme: '#{scheme}')
|
69
77
|
crashlytics(api_token: '#{api_key}',
|
70
|
-
build_secret: '#{build_secret}'
|
78
|
+
build_secret: '#{build_secret}',
|
79
|
+
notifications: false,
|
80
|
+
emails: [],
|
81
|
+
groups: []
|
82
|
+
)
|
71
83
|
end
|
72
84
|
}
|
73
85
|
end
|
@@ -80,7 +92,11 @@ platform :ios do
|
|
80
92
|
lane :beta do
|
81
93
|
gym(scheme: '#{scheme}')
|
82
94
|
crashlytics(api_token: '#{api_key}',
|
83
|
-
build_secret: '#{build_secret}'
|
95
|
+
build_secret: '#{build_secret}',
|
96
|
+
notifications: false,
|
97
|
+
emails: [],
|
98
|
+
groups: []
|
99
|
+
)
|
84
100
|
end
|
85
101
|
end
|
86
102
|
eos
|
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.
|
4
|
+
version: 1.97.0
|
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-06-
|
18
|
+
date: 2016-06-30 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: krausefx-shenzhen
|
@@ -183,7 +183,7 @@ dependencies:
|
|
183
183
|
requirements:
|
184
184
|
- - ">="
|
185
185
|
- !ruby/object:Gem::Version
|
186
|
-
version: 0.48.
|
186
|
+
version: 0.48.1
|
187
187
|
- - "<"
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: 1.0.0
|
@@ -193,7 +193,7 @@ dependencies:
|
|
193
193
|
requirements:
|
194
194
|
- - ">="
|
195
195
|
- !ruby/object:Gem::Version
|
196
|
-
version: 0.48.
|
196
|
+
version: 0.48.1
|
197
197
|
- - "<"
|
198
198
|
- !ruby/object:Gem::Version
|
199
199
|
version: 1.0.0
|
@@ -679,7 +679,6 @@ files:
|
|
679
679
|
- README.md
|
680
680
|
- bin/fastlane
|
681
681
|
- "bin/\U0001F680"
|
682
|
-
- lib/.DS_Store
|
683
682
|
- lib/assets/AppfileTemplate
|
684
683
|
- lib/assets/AppfileTemplateAndroid
|
685
684
|
- lib/assets/AvailablePlugins.md.erb
|
data/lib/.DS_Store
DELETED
Binary file
|