fastlane 2.79.0.beta.20180128010002 → 2.79.0.beta.20180129010003
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 +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/gym/lib/gym/detect_values.rb +5 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d5df6ec5ae87a2e262a4e93c1f093eeaff3b5a4
|
4
|
+
data.tar.gz: 6593a13ebb6252902d62102a815884c028f6b664
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93ae1ac66993c5ea3cc9cda1d5712d871a6ea268ca9205939a84c196234877dd75688ca4ea784c79e93df903107708641f9c035b59cb0bf433278d70f33d43be
|
7
|
+
data.tar.gz: 54d48d002c5315c2478ee229eb284f84b22b2d875f18945b5d887fe09def35ea28637affea5aa7bd5216ce799084058f5ad03a4a8c5f4a0d55e51186234549f0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.79.0.beta.
|
2
|
+
VERSION = '2.79.0.beta.20180129010003'.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
|
@@ -19,8 +19,11 @@ module Gym
|
|
19
19
|
Gym.project = FastlaneCore::Project.new(config)
|
20
20
|
|
21
21
|
# Go into the project's folder, as there might be a Gymfile there
|
22
|
-
|
23
|
-
|
22
|
+
project_path = File.expand_path("..", Gym.project.path)
|
23
|
+
unless File.expand_path(".") == project_path
|
24
|
+
Dir.chdir(project_path) do
|
25
|
+
config.load_configuration_file(Gym.gymfile_name)
|
26
|
+
end
|
24
27
|
end
|
25
28
|
|
26
29
|
detect_scheme
|
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.79.0.beta.
|
4
|
+
version: 2.79.0.beta.20180129010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Holtz
|
@@ -25,7 +25,7 @@ authors:
|
|
25
25
|
autorequire:
|
26
26
|
bindir: bin
|
27
27
|
cert_chain: []
|
28
|
-
date: 2018-01-
|
28
|
+
date: 2018-01-29 00:00:00.000000000 Z
|
29
29
|
dependencies:
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: slack-notifier
|