busser 0.7.0 → 0.7.1
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/CHANGELOG.md +7 -0
- data/lib/busser/helpers.rb +2 -2
- data/lib/busser/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30f4595bebbc27b98f099d0e238e426fea215e25
|
|
4
|
+
data.tar.gz: 651088d9f4151726593bcceb028f109c9493e225
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0a98ba07cfdc996db7457857002286f4cce1a3475554acf02b93236deb389d56362f443d7ca44e7c063e0b64941c8c5570c18482001ab2c19db34706a6411f2
|
|
7
|
+
data.tar.gz: 1f430ccc80672473ac4c48b0ee17e194e8a6f2297e5af94aee7a154edc03c7eb8d77c0756f5bb9c5edf7576bdcb530f0716f19f76b676b8e7e67c9f74797c6ab
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 0.7.1 / 2015-04-20
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
* Pull request [#23][]: Dir.glob does not accept `/` but on windows hosts uses `/` when joining path segments - expanding the path corrects this. ([@tyler-ball][])
|
|
6
|
+
|
|
1
7
|
## 0.7.0 / 2015-03-19
|
|
2
8
|
|
|
3
9
|
### Bug fixes
|
|
@@ -126,6 +132,7 @@
|
|
|
126
132
|
[#15]: https://github.com/test-kitchen/busser/issues/15
|
|
127
133
|
[#17]: https://github.com/test-kitchen/busser/issues/17
|
|
128
134
|
[#20]: https://github.com/test-kitchen/busser/issues/20
|
|
135
|
+
[#23]: https://github.com/test-kitchen/busser/issues/23
|
|
129
136
|
[@fnichol]: https://github.com/fnichol
|
|
130
137
|
[@jtimberman]: https://github.com/jtimberman
|
|
131
138
|
[@neuhalje]: https://github.com/neuhalje
|
data/lib/busser/helpers.rb
CHANGED
|
@@ -33,13 +33,13 @@ module Busser
|
|
|
33
33
|
def suite_path(name = nil)
|
|
34
34
|
path = root_path + "suites"
|
|
35
35
|
path += name if name
|
|
36
|
-
path
|
|
36
|
+
path.expand_path
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def vendor_path(product = nil)
|
|
40
40
|
path = root_path + "vendor"
|
|
41
41
|
path += product if product
|
|
42
|
-
path
|
|
42
|
+
path.expand_path
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
def root_path
|
data/lib/busser/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: busser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fletcher Nichol
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -241,7 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
241
241
|
version: '0'
|
|
242
242
|
requirements: []
|
|
243
243
|
rubyforge_project:
|
|
244
|
-
rubygems_version: 2.4.
|
|
244
|
+
rubygems_version: 2.4.2
|
|
245
245
|
signing_key:
|
|
246
246
|
specification_version: 4
|
|
247
247
|
summary: Busser - Runs tests for projects in Test Kitchen
|