cuke_fig 0.0.1 → 0.0.2
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 +8 -8
- data/lib/cuke_fig.rb +3 -3
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODM2OTFmNjk2ZTU4NTgxZWVmODQ5NDVkODdlOGM0YTM4ZTc5NzBiYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTgwN2I4YzFjNWMzNGIyYjk2YmJjNmMwNTQ1MjYzMTQwZjk3OWI5Nw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MGYyN2JhY2M3MDQyYWYyZjgyNTNkNzc4NWY1ZTI2MGFjNzVlODJhM2UzYmJh
|
10
|
+
ZDdmZmM4YWIwNmFkOTU2OWRmOTg4MTNmYTBlNmRjYTQ1MTcxZTExMDNjZjAz
|
11
|
+
Y2M2MjIxZGFjN2NmZTlkMGE2ZmEzNDEwNzY5MWMyMzcyYWEzNjI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzVlYmNiZDkxZWZkMTA5MzU0NWI5ZGIyOTUzZWI1ZGNiMzI1ZTJkYjNkZTA2
|
14
|
+
YzlhYThhOWJmMmYyYWNiOWVhYzUxNTRiZTFjOTU0ZGU4ZWZiYjEwYmM0YmRk
|
15
|
+
YjJlNmYwNTBhZmYxM2NmZmUzNjE2N2FhZjA4ZTYxMTVlODEyYTE=
|
data/lib/cuke_fig.rb
CHANGED
@@ -45,9 +45,9 @@ module CukeFig
|
|
45
45
|
|
46
46
|
def expand_config_files(common, env_config: nil, override: nil)
|
47
47
|
expanded = []
|
48
|
-
expanded.concat common unless common.nil?
|
49
|
-
expanded.concat env_config unless env_config.nil?
|
50
|
-
expanded.concat override unless override.nil?
|
48
|
+
expanded.concat Dir.glob(File.join(Dir.pwd, common)) unless common.nil?
|
49
|
+
expanded.concat Dir.glob(File.join(Dir.pwd, env_config)) unless env_config.nil?
|
50
|
+
expanded.concat Dir.glob(File.join(Dir.pwd, override)) unless override.nil?
|
51
51
|
expanded
|
52
52
|
end
|
53
53
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cuke_fig
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anders Åslund
|
@@ -52,7 +52,21 @@ dependencies:
|
|
52
52
|
- - ! '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: codeclimate-test-reporter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Multilevel configuration for cucumber tests
|
56
70
|
email: anders.aslund@teknoir.se
|
57
71
|
executables: []
|
58
72
|
extensions: []
|