fastlane 2.124.0.beta.20190527200027 → 2.124.0.beta.20190528200017

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: eeae134516d857bacfc15847ddcc90d6e378efb7
4
- data.tar.gz: cb2880f97059f66a6483e47bda23453edc894d29
3
+ metadata.gz: 507168c73d67229c834abe5dbba55e21ed348318
4
+ data.tar.gz: 732115915fa5d5003bdef05aa1dfd7c279eb6d2f
5
5
  SHA512:
6
- metadata.gz: 39c8529024d9c2c0c66e44c5897ff2feca03197f4bec4ae3f10108f5ebc42fa4982c74ece97ebd1b8708968982711cfd123281483369dd9bd2ce13a5196dbceb
7
- data.tar.gz: dbd64a72daecb997942bd4e7dedbaab77dd46cfa3a66525cda8d1c73b8648259624f2360e319731256ceb2acc4923489942b374505ee386ca164e809326dddb4
6
+ metadata.gz: '076847467b5855a6e559c4d53af709d51c361720d1adff5e8f2b0be978e86adcc85dd62c94d70ad235c79ba785b40f5fa027dd7f020f59e5b3c21383ee3469ec'
7
+ data.tar.gz: 71a5670d7ffb26a6132e259498fbb7d7703ae7de6ee6d974c7264e4c9007244ff73de378b8fa3e738a1ed7c8aca7eb0ef167685b529c47637ad7a6017144b403
data/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
  [![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/LICENSE)
9
9
  [![Gem](https://img.shields.io/gem/v/fastlane.svg?style=flat)](https://rubygems.org/gems/fastlane)
10
10
  [![Build Status](https://img.shields.io/circleci/project/github/fastlane/fastlane/master.svg)](https://circleci.com/gh/fastlane/fastlane)
11
+ [![PRs welcome!](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/fastlane/fastlane/blob/master/CONTRIBUTING.md)
11
12
 
12
13
  _fastlane_ is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application.
13
14
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.124.0.beta.20190527200027'.freeze
2
+ VERSION = '2.124.0.beta.20190528200017'.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
@@ -129,7 +129,8 @@ module Gym
129
129
 
130
130
  def result_bundle_path
131
131
  unless Gym.cache[:result_bundle_path]
132
- path = File.join(Gym.config[:output_directory], Gym.config[:output_name]) + ".result"
132
+ path = Gym.config[:result_bundle_path]
133
+ path ||= File.join(Gym.config[:output_directory], Gym.config[:output_name] + ".result")
133
134
  if File.directory?(path)
134
135
  FileUtils.remove_dir(path)
135
136
  end
@@ -161,6 +161,10 @@ module Gym
161
161
  description: "Should an Xcode result bundle be generated in the output directory",
162
162
  default_value: false,
163
163
  optional: true),
164
+ FastlaneCore::ConfigItem.new(key: :result_bundle_path,
165
+ env_name: "GYM_RESULT_BUNDLE_PATH",
166
+ description: "Path to the result bundle directory to create. Ignored if `result_bundle` if false",
167
+ optional: true),
164
168
  FastlaneCore::ConfigItem.new(key: :buildlog_path,
165
169
  short_option: "-l",
166
170
  env_name: "GYM_BUILDLOG_PATH",
@@ -38,8 +38,8 @@ module Spaceship
38
38
  'ipad' => [1024, 768],
39
39
  'ipad105' => [2224, 1668],
40
40
  'ipadPro' => [2732, 2048],
41
- 'iPadPro11' => [2388, 1668],
42
- 'iPadPro129' => [2732, 2048]
41
+ 'ipadPro11' => [2388, 1668],
42
+ 'ipadPro129' => [2732, 2048]
43
43
  }
44
44
 
45
45
  r = resolutions[device]
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.124.0.beta.20190527200027
4
+ version: 2.124.0.beta.20190528200017
5
5
  platform: ruby
6
6
  authors:
7
7
  - Helmut Januschka
@@ -27,7 +27,7 @@ authors:
27
27
  autorequire:
28
28
  bindir: bin
29
29
  cert_chain: []
30
- date: 2019-05-27 00:00:00.000000000 Z
30
+ date: 2019-05-28 00:00:00.000000000 Z
31
31
  dependencies:
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: slack-notifier
@@ -1693,24 +1693,24 @@ metadata:
1693
1693
  post_install_message:
1694
1694
  rdoc_options: []
1695
1695
  require_paths:
1696
- - credentials_manager/lib
1697
1696
  - deliver/lib
1698
- - sigh/lib
1699
1697
  - scan/lib
1700
- - frameit/lib
1701
- - gym/lib
1702
- - fastlane_core/lib
1703
- - screengrab/lib
1704
- - precheck/lib
1698
+ - snapshot/lib
1699
+ - supply/lib
1705
1700
  - match/lib
1701
+ - pem/lib
1702
+ - precheck/lib
1703
+ - spaceship/lib
1706
1704
  - produce/lib
1707
- - supply/lib
1708
- - snapshot/lib
1709
- - fastlane/lib
1710
1705
  - cert/lib
1711
- - pem/lib
1712
1706
  - pilot/lib
1713
- - spaceship/lib
1707
+ - credentials_manager/lib
1708
+ - fastlane/lib
1709
+ - gym/lib
1710
+ - fastlane_core/lib
1711
+ - screengrab/lib
1712
+ - sigh/lib
1713
+ - frameit/lib
1714
1714
  required_ruby_version: !ruby/object:Gem::Requirement
1715
1715
  requirements:
1716
1716
  - - ">="