fastlane 1.46.1 → 1.47.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: 5c2c02d95f1398afe851c4be7156a3375468b9c9
4
- data.tar.gz: 8a92f67bb2f712a549ca010df4ab750ca2db0a06
3
+ metadata.gz: 271f13ff41cc0f6d6cd535fd93fc16d6a83721a2
4
+ data.tar.gz: a7052257b6aeb80085e30da44ccf66daef244251
5
5
  SHA512:
6
- metadata.gz: 1164580d026faade116ccc2e516b50555e7d74a844ffbcf959ac6f5455f97d2d669c3ca8d8c205bb90acc8c44b670f76c2cf0505dda255afc6b5a30c40b55322
7
- data.tar.gz: 29ba5bf0b359533d448530e03116ac5c2782baccce8ffe393750644140c99bdb0a0699b3d22f1543842eccdcc437429ae3b9e93d73dfca3adff420cfb14b699a
6
+ metadata.gz: fa6225de074f1873c73e732377bc3a1101a138decf0e572da596f4c161355fd91dfac5a8a6a717c43e5b3bf47cdd8910de6af7b0f6539d3cf4cef4c75ceb82a8
7
+ data.tar.gz: 5114b3865bcaa3a6a675c58d7ad91edb3240c3a3dbc3b0671050a9e003582a9c8b8c95e762b3b89dc786d9d431c2830df263e755c704cd30c2eb9d239159876d
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <a href="https://github.com/fastlane/deliver">deliver</a> &bull;
6
6
  <a href="https://github.com/fastlane/snapshot">snapshot</a> &bull;
7
7
  <a href="https://github.com/fastlane/frameit">frameit</a> &bull;
8
- <a href="https://github.com/fastlane/PEM">PEM</a> &bull;
8
+ <a href="https://github.com/fastlane/pem">pem</a> &bull;
9
9
  <a href="https://github.com/fastlane/sigh">sigh</a> &bull;
10
10
  <a href="https://github.com/fastlane/produce">produce</a> &bull;
11
11
  <a href="https://github.com/fastlane/cert">cert</a> &bull;
@@ -13,7 +13,8 @@
13
13
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
14
14
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
15
15
  <a href="https://github.com/fastlane/gym">gym</a> &bull;
16
- <a href="https://github.com/fastlane/scan">scan</a>
16
+ <a href="https://github.com/fastlane/scan">scan</a> &bull;
17
+ <a href="https://github.com/fastlane/match">match</a>
17
18
  </p>
18
19
  -------
19
20
 
@@ -157,7 +158,7 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
157
158
  - [`deliver`](https://github.com/fastlane/deliver): Upload screenshots, metadata and your app to the App Store
158
159
  - [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
159
160
  - [`frameit`](https://github.com/fastlane/frameit): Quickly put your screenshots into the right device frames
160
- - [`PEM`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
161
+ - [`pem`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
161
162
  - [`sigh`](https://github.com/fastlane/sigh): Because you would rather spend your time building stuff than fighting provisioning
162
163
  - [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
163
164
  - [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
@@ -166,6 +167,7 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
166
167
  - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
167
168
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
168
169
  - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
170
+ - [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
169
171
 
170
172
  ## Statistics
171
173
 
data/bin/fastlane CHANGED
@@ -106,7 +106,8 @@ class FastlaneApplication
106
106
 
107
107
  c.action do |args, options|
108
108
  require 'fastlane/one_off'
109
- Fastlane::OneOff.execute(args: args)
109
+ result = Fastlane::OneOff.execute(args: args)
110
+ puts "Result: #{result}".green if result
110
111
  end
111
112
  end
112
113
 
@@ -0,0 +1,50 @@
1
+ module Fastlane
2
+ module Actions
3
+ class MatchAction < Action
4
+ def self.run(params)
5
+ require 'match'
6
+
7
+ begin
8
+ FastlaneCore::UpdateChecker.start_looking_for_update('match') unless Helper.is_test?
9
+
10
+ params.load_configuration_file("Matchfile")
11
+ Match::Runner.new.run(params)
12
+ ensure
13
+ FastlaneCore::UpdateChecker.show_update_status('match', Match::VERSION)
14
+ end
15
+ end
16
+
17
+ #####################################################
18
+ # @!group Documentation
19
+ #####################################################
20
+
21
+ def self.description
22
+ "Easily sync your certificates and profiles across your team using git"
23
+ end
24
+
25
+ def self.details
26
+ "More details https://github.com/fastlane/match"
27
+ end
28
+
29
+ def self.available_options
30
+ require 'match'
31
+ Match::Options.available_options
32
+ end
33
+
34
+ def self.output
35
+ []
36
+ end
37
+
38
+ def self.return_value
39
+ end
40
+
41
+ def self.authors
42
+ ["KrauseFx"]
43
+ end
44
+
45
+ def self.is_supported?(platform)
46
+ platform == :ios
47
+ end
48
+ end
49
+ end
50
+ end
@@ -162,7 +162,7 @@ module Fastlane
162
162
  def self.details
163
163
  "Creates a new release on GitHub. You must provide your GitHub Personal token
164
164
  (get one from https://github.com/settings/tokens/new), the repository name
165
- and tag name. If the tag doesn't exist, one will be created on the commit or branch passed-in as
165
+ and tag name. By default that's 'master'. If the tag doesn't exist, one will be created on the commit or branch passed-in as
166
166
  commitish. Out parameters provide the release's id, which can be used for later editing and the
167
167
  release html link to GitHub. You can also specify a list of assets to be uploaded to the release with the upload_assets parameter."
168
168
  end
@@ -193,7 +193,7 @@ module Fastlane
193
193
  optional: true),
194
194
  FastlaneCore::ConfigItem.new(key: :commitish,
195
195
  env_name: "FL_SET_GITHUB_RELEASE_COMMITISH",
196
- description: "If provided tag doesn't exist, a new one will be created on the provided branch/commit",
196
+ description: "Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. Default: the repository's default branch (usually master)",
197
197
  is_string: true,
198
198
  optional: true),
199
199
  FastlaneCore::ConfigItem.new(key: :description,
@@ -25,13 +25,7 @@ module Fastlane
25
25
  options[:message] = self.trim_message(options[:message].to_s || '')
26
26
  options[:message] = Slack::Notifier::LinkFormatter.format(options[:message])
27
27
 
28
- url = ENV['SLACK_URL']
29
- unless url
30
- Helper.log.fatal "Please add 'ENV[\"SLACK_URL\"] = \"https://hooks.slack.com/services/...\"' to your Fastfile's `before_all` section.".red
31
- raise 'No SLACK_URL given.'.red
32
- end
33
-
34
- notifier = Slack::Notifier.new(url)
28
+ notifier = Slack::Notifier.new(options[:slack_url])
35
29
 
36
30
  notifier.username = 'fastlane'
37
31
  if options[:channel].to_s.length > 0
@@ -147,7 +147,7 @@ module Fastlane
147
147
  options.each do |current|
148
148
  if current.kind_of? FastlaneCore::ConfigItem
149
149
  key_name = (current.optional ? "" : "* ") + current.key.to_s
150
- description = current.description + (current.default_value ? " (default: '#{current.default_value}')" : "")
150
+ description = (current.description || '') + (current.default_value ? " (default: '#{current.default_value}')" : "")
151
151
 
152
152
  rows << [key_name.yellow, description, current.env_name]
153
153
 
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.46.1'
2
+ VERSION = '1.47.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.46.1
4
+ version: 1.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-07 00:00:00.000000000 Z
11
+ date: 2015-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: krausefx-shenzhen
@@ -148,7 +148,7 @@ dependencies:
148
148
  requirements:
149
149
  - - ">="
150
150
  - !ruby/object:Gem::Version
151
- version: 0.28.0
151
+ version: 0.29.0
152
152
  - - "<"
153
153
  - !ruby/object:Gem::Version
154
154
  version: 1.0.0
@@ -158,7 +158,7 @@ dependencies:
158
158
  requirements:
159
159
  - - ">="
160
160
  - !ruby/object:Gem::Version
161
- version: 0.28.0
161
+ version: 0.29.0
162
162
  - - "<"
163
163
  - !ruby/object:Gem::Version
164
164
  version: 1.0.0
@@ -168,7 +168,7 @@ dependencies:
168
168
  requirements:
169
169
  - - ">="
170
170
  - !ruby/object:Gem::Version
171
- version: 0.12.0
171
+ version: 0.13.0
172
172
  - - "<"
173
173
  - !ruby/object:Gem::Version
174
174
  version: 1.0.0
@@ -178,7 +178,7 @@ dependencies:
178
178
  requirements:
179
179
  - - ">="
180
180
  - !ruby/object:Gem::Version
181
- version: 0.12.0
181
+ version: 0.13.0
182
182
  - - "<"
183
183
  - !ruby/object:Gem::Version
184
184
  version: 1.0.0
@@ -188,7 +188,7 @@ dependencies:
188
188
  requirements:
189
189
  - - ">="
190
190
  - !ruby/object:Gem::Version
191
- version: 0.15.0
191
+ version: 0.16.0
192
192
  - - "<"
193
193
  - !ruby/object:Gem::Version
194
194
  version: 1.0.0
@@ -198,7 +198,7 @@ dependencies:
198
198
  requirements:
199
199
  - - ">="
200
200
  - !ruby/object:Gem::Version
201
- version: 0.15.0
201
+ version: 0.16.0
202
202
  - - "<"
203
203
  - !ruby/object:Gem::Version
204
204
  version: 1.0.0
@@ -208,7 +208,7 @@ dependencies:
208
208
  requirements:
209
209
  - - ">="
210
210
  - !ruby/object:Gem::Version
211
- version: 1.6.3
211
+ version: 1.6.4
212
212
  - - "<"
213
213
  - !ruby/object:Gem::Version
214
214
  version: 2.0.0
@@ -218,7 +218,7 @@ dependencies:
218
218
  requirements:
219
219
  - - ">="
220
220
  - !ruby/object:Gem::Version
221
- version: 1.6.3
221
+ version: 1.6.4
222
222
  - - "<"
223
223
  - !ruby/object:Gem::Version
224
224
  version: 2.0.0
@@ -228,7 +228,7 @@ dependencies:
228
228
  requirements:
229
229
  - - ">="
230
230
  - !ruby/object:Gem::Version
231
- version: 1.4.0
231
+ version: 1.4.1
232
232
  - - "<"
233
233
  - !ruby/object:Gem::Version
234
234
  version: 2.0.0
@@ -238,7 +238,7 @@ dependencies:
238
238
  requirements:
239
239
  - - ">="
240
240
  - !ruby/object:Gem::Version
241
- version: 1.4.0
241
+ version: 1.4.1
242
242
  - - "<"
243
243
  - !ruby/object:Gem::Version
244
244
  version: 2.0.0
@@ -422,6 +422,26 @@ dependencies:
422
422
  - - "<"
423
423
  - !ruby/object:Gem::Version
424
424
  version: 1.0.0
425
+ - !ruby/object:Gem::Dependency
426
+ name: match
427
+ requirement: !ruby/object:Gem::Requirement
428
+ requirements:
429
+ - - ">="
430
+ - !ruby/object:Gem::Version
431
+ version: 0.1.0
432
+ - - "<"
433
+ - !ruby/object:Gem::Version
434
+ version: 1.0.0
435
+ type: :runtime
436
+ prerelease: false
437
+ version_requirements: !ruby/object:Gem::Requirement
438
+ requirements:
439
+ - - ">="
440
+ - !ruby/object:Gem::Version
441
+ version: 0.1.0
442
+ - - "<"
443
+ - !ruby/object:Gem::Version
444
+ version: 1.0.0
425
445
  - !ruby/object:Gem::Dependency
426
446
  name: bundler
427
447
  requirement: !ruby/object:Gem::Requirement
@@ -626,6 +646,7 @@ files:
626
646
  - lib/fastlane/actions/last_git_tag.rb
627
647
  - lib/fastlane/actions/lcov.rb
628
648
  - lib/fastlane/actions/mailgun.rb
649
+ - lib/fastlane/actions/match.rb
629
650
  - lib/fastlane/actions/nexus_upload.rb
630
651
  - lib/fastlane/actions/notification.rb
631
652
  - lib/fastlane/actions/notify.rb
@@ -731,7 +752,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
731
752
  version: '0'
732
753
  requirements: []
733
754
  rubyforge_project:
734
- rubygems_version: 2.4.5.1
755
+ rubygems_version: 2.4.0
735
756
  signing_key:
736
757
  specification_version: 4
737
758
  summary: Connect all iOS deployment tools into one streamlined workflow