quke 0.2.2 → 0.2.3
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/CHANGELOG.md +4 -3
- data/lib/quke/configuration.rb +1 -4
- data/lib/quke/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OGY0ODVkNTE3ODNjZjQ2ODkzOTNmMTA1OWE0ZWEyZTFiZjg3OTA1Mw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MGM4ZDRjZmIyMzU1YTJiNWVkMTdkNGFhZjg4ODljMmY3MjhlMTNlMg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MzhhYTVkMmNiNTIyYmY5YjA1NGY5ZGM1Mzg0ZmFhYjZmNzE3MDIzMGU3YWYx
|
|
10
|
+
MTc0MzkxNDc3YTFlMzVmZTFjZWI4N2ZhMjdkNDgyZjBhMmE2YWI0NDYxZmU1
|
|
11
|
+
ZGMzNWYxZDQyNTY0ZTQxODU1MWE3OTU5MTk3ZWMxYTgwYTYzNjU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjkyM2YxOThlODc4ZGMyY2Y1NGQ0ZjExMTJkNzBmYmVjNzA0MGMyODBkZTdh
|
|
14
|
+
MTBjOWMxODQ2Nzg4YTgyNWZjZTM2ZmYxMWNjZWIwODRhZWE2NGE0ODRmYWIy
|
|
15
|
+
NDViMzE1NDU4MzRhOWFiMTVhNTA2YTQ1ZGM3M2JlYzA3YzY0YmE=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
4
|
-
|
|
5
|
-
[Full Changelog](https://github.com/EnvironmentAgency/quke/compare/v0.2.1...HEAD)
|
|
3
|
+
## [v0.2.2](https://github.com/EnvironmentAgency/quke/tree/v0.2.2) (2016-10-05)
|
|
4
|
+
[Full Changelog](https://github.com/EnvironmentAgency/quke/compare/v0.2.1...v0.2.2)
|
|
6
5
|
|
|
7
6
|
**Merged pull requests:**
|
|
8
7
|
|
|
8
|
+
- Fix Cucumber not loading lib/features correctly [\#35](https://github.com/EnvironmentAgency/quke/pull/35) ([Cruikshanks](https://github.com/Cruikshanks))
|
|
9
|
+
- Add Github\_changelog\_generator support [\#34](https://github.com/EnvironmentAgency/quke/pull/34) ([Cruikshanks](https://github.com/Cruikshanks))
|
|
9
10
|
- Add Rubygems version badge to README [\#33](https://github.com/EnvironmentAgency/quke/pull/33) ([Cruikshanks](https://github.com/Cruikshanks))
|
|
10
11
|
|
|
11
12
|
## [v0.2.1](https://github.com/EnvironmentAgency/quke/tree/v0.2.1) (2016-10-05)
|
data/lib/quke/configuration.rb
CHANGED
|
@@ -14,10 +14,7 @@ module Quke #:nodoc:
|
|
|
14
14
|
# Returns the expected root location of where Quke expects to find the
|
|
15
15
|
# the config file.
|
|
16
16
|
def self.file_location
|
|
17
|
-
@file_location ||=
|
|
18
|
-
"../../#{file_name}",
|
|
19
|
-
File.dirname(__FILE__)
|
|
20
|
-
)
|
|
17
|
+
@file_location ||= "#{Dir.pwd}/#{file_name}"
|
|
21
18
|
end
|
|
22
19
|
|
|
23
20
|
# Return the file name for the config file, either as set by the user in
|
data/lib/quke/version.rb
CHANGED