build-files 0.2.6 → 0.2.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f4fa10c049d006e2e1a8c50747328ffd0303a243
4
- data.tar.gz: ab3b2c0fc7e9208b09864bf58e4f5393dadfb369
3
+ metadata.gz: 24c83aee7dd84e2705d41f1b2f8783da0de9c3c7
4
+ data.tar.gz: 892414687bacc2afa80f7bb365b19cbe594b8fbb
5
5
  SHA512:
6
- metadata.gz: e5371d9c16faa762a70f5bb8af58f28a5415ee151dcad6d93fbffd22ce22819acd7b4673dc99d7b11d93eed1e1c9bd5a6ee376d71fb365fac1ea7d0be230a6a0
7
- data.tar.gz: 6d47b462a2ba17d2f70895b0ee34a6aeebe71e5fc5fa623b7a61bb6c72a7c1250231fcde7c523538bc26964a3e2053541f565588c7e71d757c9a032432052950
6
+ metadata.gz: 6c17a0de43686bb7b1cfcfc5e281c550a00f1e51ec1079af1f4697b8f2183eeb64861b5f36c4071fda2baf23bc45c1d48d62238a4d124bb1c041c6ade487f756
7
+ data.tar.gz: 2ae18629f8cbb12efa46f1557ed4f5d8dda6d8c9e998cf2d6b87dcc02b70a8f5a948b355a1434d2b6e967de7a8b1a77e4d1001491ad1ecfff99af825022402e9
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Build
22
22
  module Files
23
- VERSION = "0.2.6"
23
+ VERSION = "0.2.7"
24
24
  end
25
25
  end
@@ -36,6 +36,15 @@ module Build::Files::PathSpec
36
36
  expect(Path["/foo/bar/baz"]).to be == path
37
37
  end
38
38
 
39
+ it "should be equal" do
40
+ expect(path).to be_eql path
41
+ expect(path).to be == path
42
+
43
+ different_root_path = Path.join("/foo/bar", "baz")
44
+ expect(path).to_not be_eql different_root_path
45
+ expect(path).to be == different_root_path
46
+ end
47
+
39
48
  it "should convert to string" do
40
49
  expect(path.to_s).to be == "/foo/bar/baz"
41
50
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-files
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams