fastlane 2.59.0 → 2.60.0.beta.20170926010004

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: ab4ee1ec46e9f4839f1aad8df1ef52d20bc4cfd4
4
- data.tar.gz: a7db50781977c84603bd0592974573ddb68ae837
3
+ metadata.gz: ff4b6d79ec626fc6e321c6bef032ebcbaae35c0b
4
+ data.tar.gz: d67355d16be7ddd0d3d17d7eaafd96a2c040ab86
5
5
  SHA512:
6
- metadata.gz: 1b2d910149541213e232c30b768405f36cefbb56bc466aa448010c88bc0cc27afc9081be8071459ca15965097c392ffb95b1ff2b270d42b6219132557869fa3a
7
- data.tar.gz: d9830b2d77650c8c6c385671f5b0573000c326d53553c282bede25262e99c92eb896a4adba78b3f8d6ffe3544e443b5f6a715745bf2c4be916f7bdeb607b3cee
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(app_identifier: "com.krausefx.app", version: "1.0", changelog: "All Languages")'
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? Hash
163
-
164
- UI.user_error!("Could not find '#{key}'. Available lanes: #{self.runner.available_lanes.join(', ')}")
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)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.59.0'.freeze
2
+ VERSION = '2.60.0.beta.20170926010004'.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
  end
@@ -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 only)?",
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.59.0
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-25 00:00:00.000000000 Z
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
- - cert/lib
1449
- - credentials_manager/lib
1450
- - deliver/lib
1446
+ - spaceship/lib
1447
+ - scan/lib
1448
+ - sigh/lib
1449
+ - snapshot/lib
1450
+ - screengrab/lib
1451
1451
  - fastlane/lib
1452
- - fastlane_core/lib
1453
- - frameit/lib
1452
+ - cert/lib
1453
+ - pem/lib
1454
1454
  - gym/lib
1455
+ - produce/lib
1456
+ - deliver/lib
1457
+ - supply/lib
1455
1458
  - match/lib
1456
- - pem/lib
1459
+ - frameit/lib
1460
+ - credentials_manager/lib
1457
1461
  - pilot/lib
1458
1462
  - precheck/lib
1459
- - produce/lib
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: '0'
1473
+ version: 1.3.1
1476
1474
  requirements: []
1477
1475
  rubyforge_project:
1478
- rubygems_version: 2.6.10
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:
Binary file
Binary file