fastlane 2.18.0.beta.20170219010032 → 2.18.0.beta.20170220010017

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: 17f99d6e6eaa0f5e45cfc24f92aa8b1fe2388837
4
- data.tar.gz: b3e64049b4e7d5eae68893294836617a169ca53e
3
+ metadata.gz: 568001c3d6ed935a70ccac7f4be2fa95a03a094f
4
+ data.tar.gz: fac60fec3137b889d6de9cdc92f84940e4fca35d
5
5
  SHA512:
6
- metadata.gz: 6689923739a46a4c5fba3bda0b02d3917aaf1bb9a930cb13cc5feac8f03c1f7335cc8a2283a2719449368aacf21b6d80547e87a53bb084e2d588e02ca56c6d95
7
- data.tar.gz: b9f562c9be1e85d839bfcd8247de788746c23ec2a08ad11b5ab50e0078252227899dbcef28f792e8c739f0a119b670f792dc55b5f7366312885208bb701e5e30
6
+ metadata.gz: 235b9f69f0c604b7f07a39dcc11b50957398a7eac104701d7eb24411cad01674179ce0125a3236077f811bc915cabddeb06568bbf4d337d51a3dac31cd01f114
7
+ data.tar.gz: 480ddca7b76dd1c58d11b1d95323068b569e1f6c02008bd2a21541885a411ff4499b26c14c82f073f27d7cb16aedb81f826d26f3efdf152603f5e2c0ccd9fd4f
@@ -223,7 +223,12 @@ module Fastlane
223
223
 
224
224
  if Helper.mac?
225
225
  table_content["Xcode Path"] = anonymized_path(Helper.xcode_path)
226
- table_content["Xcode Version"] = Helper.xcode_version
226
+ begin
227
+ table_content["Xcode Version"] = Helper.xcode_version
228
+ rescue => ex
229
+ UI.error(ex)
230
+ UI.error("Could not get Xcode Version")
231
+ end
227
232
  end
228
233
 
229
234
  table = ["| Key | Value |"]
@@ -241,12 +241,12 @@ module Fastlane
241
241
  fastlane_folder_name = "fastlane"
242
242
  end
243
243
  "plugins_path = File.join(File.dirname(__FILE__), '#{fastlane_folder_name}', '#{PluginManager::PLUGINFILE_NAME}')\n" \
244
- "eval(File.read(plugins_path), binding) if File.exist?(plugins_path)"
244
+ "eval_gemfile(plugins_path) if File.exist?(plugins_path)"
245
245
  end
246
246
 
247
247
  # Makes sure, the user's Gemfile actually loads the Plugins file
248
248
  def plugins_attached?
249
- gemfile_path && gemfile_content.include?(self.class.code_to_attach)
249
+ gemfile_path && gemfile_content.include?(PluginManager::PLUGINFILE_NAME)
250
250
  end
251
251
 
252
252
  def ensure_plugins_attached!
@@ -3,4 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
6
- eval(File.read(plugins_path), binding) if File.exist?(plugins_path)
6
+ eval_gemfile(plugins_path) if File.exist?(plugins_path)
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.18.0.beta.20170219010032'.freeze
2
+ VERSION = '2.18.0.beta.20170220010017'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -7,8 +7,6 @@ module Scan
7
7
  class CommandsGenerator
8
8
  include Commander::Methods
9
9
 
10
- FastlaneCore::CommanderGenerator.new.generate(Scan::Options.available_options)
11
-
12
10
  def self.start
13
11
  new.run
14
12
  end
@@ -33,6 +31,9 @@ module Scan
33
31
  command :tests do |c|
34
32
  c.syntax = "fastlane scan"
35
33
  c.description = Scan::DESCRIPTION
34
+
35
+ FastlaneCore::CommanderGenerator.new.generate(Scan::Options.available_options, command: c)
36
+
36
37
  c.action do |_args, options|
37
38
  config = FastlaneCore::Configuration.create(Scan::Options.available_options,
38
39
  convert_options(options))
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.18.0.beta.20170219010032
4
+ version: 2.18.0.beta.20170220010017
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-02-19 00:00:00.000000000 Z
17
+ date: 2017-02-20 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier
@@ -1294,23 +1294,23 @@ metadata: {}
1294
1294
  post_install_message:
1295
1295
  rdoc_options: []
1296
1296
  require_paths:
1297
- - gym/lib
1298
- - deliver/lib
1299
- - fastlane/lib
1300
1297
  - fastlane_core/lib
1301
1298
  - produce/lib
1302
- - supply/lib
1303
- - snapshot/lib
1304
- - match/lib
1305
1299
  - spaceship/lib
1306
- - cert/lib
1307
- - screengrab/lib
1308
- - scan/lib
1309
1300
  - frameit/lib
1310
- - sigh/lib
1311
- - pem/lib
1312
1301
  - credentials_manager/lib
1302
+ - gym/lib
1303
+ - screengrab/lib
1304
+ - cert/lib
1305
+ - fastlane/lib
1313
1306
  - pilot/lib
1307
+ - snapshot/lib
1308
+ - pem/lib
1309
+ - scan/lib
1310
+ - sigh/lib
1311
+ - deliver/lib
1312
+ - match/lib
1313
+ - supply/lib
1314
1314
  required_ruby_version: !ruby/object:Gem::Requirement
1315
1315
  requirements:
1316
1316
  - - ">="