fastlane 2.93.0.beta.20180420050021 → 2.93.0.beta.20180421050012

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f46ba54870b3749269b13bfb6e4239ef9339efe
4
- data.tar.gz: a9f1609dcb6778c98dbe226c3b76855b1e386a06
3
+ metadata.gz: e9af75fddcc876823ca9ccfe91f6a8cdc451e412
4
+ data.tar.gz: 2eaf80bcbd96a39382082e76adf43e9f23e9c6d3
5
5
  SHA512:
6
- metadata.gz: 3be98c59da52d40a3e6402f7474938381f7571636524079308705ebfe66fb9fba48ad06a0a73e1f22e765b7522ed20acaa72dad400dbade018a5451bb9c02905
7
- data.tar.gz: dbf0a7f0d740b25c3d186c7e2d0cdd29aba5dc103586d3d731a0c35a2b138ca6aee8c1b334ae53cda46477fcd2bd35c1e5ee015bb2292483de6868f4f5bd897a
6
+ metadata.gz: 920e5ba487e64ce2d19f764e2b230bd90d2986b78aa85745fa7d93f47ef3195e79660fd029f0a72fc9562c575be8d744fa7471cb33d7c277b0da62150736f11b
7
+ data.tar.gz: 27eabc7948cd342e3b14f1066e387b5d8831eaeb10395fc8b03c39b838d3aff84607ded0c6e91835c742fb2220ae791bdb21363c05cb285ed164b1cc98a7fb98
@@ -5,6 +5,10 @@
5
5
  #
6
6
  # https://docs.fastlane.tools/actions
7
7
  #
8
+ # For a list of all available plugins, check out
9
+ #
10
+ # https://docs.fastlane.tools/plugins/available-plugins
11
+ #
8
12
 
9
13
  # Uncomment the line if you want fastlane to automatically update itself
10
14
  # update_fastlane
@@ -54,14 +54,15 @@ module Fastlane
54
54
  end
55
55
  end
56
56
 
57
- FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
58
-
59
57
  # Loading any .env files before any lanes are called since
60
58
  # variables like FASTLANE_HIDE_CHANGELOG and FASTLANE_DISABLE_COLORS
61
59
  # need to be set early on in execution
62
60
  require 'fastlane/helper/dotenv_helper'
63
61
  Fastlane::Helper::DotenvHelper.load_dot_env(nil)
64
62
 
63
+ # Needs to go after load_dot_env for variable FASTLANE_SKIP_UPDATE_CHECK
64
+ FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
65
+
65
66
  # Disabling colors if environment variable set
66
67
  require 'fastlane_core/ui/disable_colors' if FastlaneCore::Helper.colors_disabled?
67
68
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.93.0.beta.20180420050021'.freeze
2
+ VERSION = '2.93.0.beta.20180421050012'.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
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
@@ -77,7 +77,16 @@ module Snapshot
77
77
 
78
78
  paths.each do |path|
79
79
  UI.message("Adding '#{path}'")
80
- Helper.backticks("xcrun simctl add#{media_type} #{device_udid} #{path.shellescape} &> /dev/null")
80
+
81
+ # Attempting addmedia since addphoto and addvideo are deprecated
82
+ output = Helper.backticks("xcrun simctl addmedia #{device_udid} #{path.shellescape} &> /dev/null")
83
+
84
+ # Run legacy addphoto and addvideo if addmedia isn't found
85
+ # Output will be empty strin gif it was a success
86
+ # Output will contain "usage: simctl" if command not found
87
+ if output.include?('usage: simctl')
88
+ Helper.backticks("xcrun simctl add#{media_type} #{device_udid} #{path.shellescape} &> /dev/null")
89
+ end
81
90
  end
82
91
  end
83
92
  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: 2.93.0.beta.20180420050021
4
+ version: 2.93.0.beta.20180421050012
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jorge Revuelta H
@@ -27,7 +27,7 @@ authors:
27
27
  autorequire:
28
28
  bindir: bin
29
29
  cert_chain: []
30
- date: 2018-04-20 00:00:00.000000000 Z
30
+ date: 2018-04-21 00:00:00.000000000 Z
31
31
  dependencies:
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: slack-notifier
@@ -1636,24 +1636,24 @@ metadata:
1636
1636
  post_install_message:
1637
1637
  rdoc_options: []
1638
1638
  require_paths:
1639
- - pilot/lib
1640
- - gym/lib
1641
- - credentials_manager/lib
1642
1639
  - spaceship/lib
1643
- - cert/lib
1644
- - scan/lib
1645
- - deliver/lib
1646
- - match/lib
1647
- - precheck/lib
1648
1640
  - frameit/lib
1641
+ - fastlane/lib
1642
+ - match/lib
1643
+ - cert/lib
1644
+ - gym/lib
1645
+ - pem/lib
1649
1646
  - produce/lib
1650
1647
  - snapshot/lib
1651
- - pem/lib
1652
1648
  - fastlane_core/lib
1649
+ - sigh/lib
1650
+ - scan/lib
1651
+ - deliver/lib
1652
+ - credentials_manager/lib
1653
1653
  - supply/lib
1654
+ - precheck/lib
1654
1655
  - screengrab/lib
1655
- - sigh/lib
1656
- - fastlane/lib
1656
+ - pilot/lib
1657
1657
  required_ruby_version: !ruby/object:Gem::Requirement
1658
1658
  requirements:
1659
1659
  - - ">="