fastlane_core 0.26.0 → 0.26.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane_core/configuration/configuration.rb +4 -1
- data/lib/fastlane_core/version.rb +1 -1
- 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: d791cd9f98f382ea36b02f7adbed0bc5f18abaa1
|
4
|
+
data.tar.gz: bd426de71c32011cd1ec12f4d09e7a2967440132
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 414f01c0bf4d48aa21399963ccbe02930c6b6ee28eb23a4c776b1579a1f682a0c3904854c55d938e5ecf4922e703baad2ca71d0030c4de4433e2a709e4e434bf
|
7
|
+
data.tar.gz: 8fe47afaa1fa8f0675ff4827c373792ee9b4321b6356bc7b5686c0232a1062b7ed7502992d39cb6286b6f298d2aacfe573f3fcf61ef06e410509dae666462934
|
@@ -102,7 +102,10 @@ module FastlaneCore
|
|
102
102
|
|
103
103
|
self.config_file_name = config_file_name
|
104
104
|
|
105
|
-
paths =
|
105
|
+
paths = []
|
106
|
+
paths += Dir["./fastlane/#{self.config_file_name}"]
|
107
|
+
paths += Dir["./.fastlane/#{self.config_file_name}"]
|
108
|
+
paths += Dir["./#{self.config_file_name}"]
|
106
109
|
paths += Dir["./spec/fixtures/#{self.config_file_name}"] if Helper.is_test?
|
107
110
|
return if paths.count == 0
|
108
111
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|