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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7fc03884dbd96a157a1ce7678dded4d600fc208e
4
- data.tar.gz: 2ddb998ef09e02d13130d25bc93fd518a77dbacd
3
+ metadata.gz: c8b81eef91990483f60fddd43cfe9aebd1194fd7
4
+ data.tar.gz: cb06e49f237876fac0b46f2ae765c5f0459b8508
5
5
  SHA512:
6
- metadata.gz: 134b58780bfb3979d7769762f821af1b80efb7e114e6d8d56d1b00742a6f834a7056a22558c08cfe18682b937b292eb5dbb463163ccf35287c614870200c903d
7
- data.tar.gz: 9e9b5af63e945489fa77e0e030b0ea3dd4898c782a38212af3476a63bd8713542787fb650c86e6f02a7089ed3a7c4a485890e5e1cf84e964e27761d826a9f6cd
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=itms-services://?action=download-manifest&url=<%= plist_url %>" id="text" class="btn btn-lg btn-default" onclick="document.getElementById('finished').id = '';">
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>
@@ -5,6 +5,10 @@ module Fastlane
5
5
  ENV["FASTLANE_SKIP_DOCS"] = "1"
6
6
  end
7
7
 
8
+ def self.step_text
9
+ nil
10
+ end
11
+
8
12
  #####################################################
9
13
  # @!group Documentation
10
14
  #####################################################
@@ -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('Please enter your API Key and Build Secret:')
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
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '1.96.0'.freeze
2
+ VERSION = '1.97.0'.freeze
3
3
  DESCRIPTION = "The easiest way to automate building and releasing your iOS and Android apps"
4
4
  end
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.96.0
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-24 00:00:00.000000000 Z
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.0
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.0
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
Binary file