busser 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4e5b876e7739f9accc1f789e53e7db030079924
4
- data.tar.gz: 93f0243540a46c23f3e3cfc325fca2d00efe657e
3
+ metadata.gz: 30f4595bebbc27b98f099d0e238e426fea215e25
4
+ data.tar.gz: 651088d9f4151726593bcceb028f109c9493e225
5
5
  SHA512:
6
- metadata.gz: e6e014f16d859a9a32953f2b926a4cfaaa54eaebe49de174973de7c30be1139f7ef9dc19166139c0f6ba617fc595c49242369527b598f7618059c045e60859ae
7
- data.tar.gz: 8788bf94f96aeeaced734cad22ba89fd43f187fbd66a9912cfa8a5a6574c9b7a88498f1dbe1d9b052a61f9c142c2d4bc9e64a4c932dee3377ac23e4c52265e53
6
+ metadata.gz: a0a98ba07cfdc996db7457857002286f4cce1a3475554acf02b93236deb389d56362f443d7ca44e7c063e0b64941c8c5570c18482001ab2c19db34706a6411f2
7
+ data.tar.gz: 1f430ccc80672473ac4c48b0ee17e194e8a6f2297e5af94aee7a154edc03c7eb8d77c0756f5bb9c5edf7576bdcb530f0716f19f76b676b8e7e67c9f74797c6ab
@@ -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
@@ -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
@@ -17,5 +17,5 @@
17
17
  # limitations under the License.
18
18
 
19
19
  module Busser
20
- VERSION = "0.7.0"
20
+ VERSION = "0.7.1"
21
21
  end
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.0
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-03-19 00:00:00.000000000 Z
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.5
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