build-files 0.2.3 → 0.2.4

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: 39434d4eb8660aacf9aa81a50e981087186bdb20
4
- data.tar.gz: 1a98597bc51950d7a6deeb987dab68945ebe8d6d
3
+ metadata.gz: 2d90bbaa5e0e44de8a7660c779909abfb9f6b0bc
4
+ data.tar.gz: d0f24d49f5fe73bf25c3a59958409a5962cbbd82
5
5
  SHA512:
6
- metadata.gz: 388ec08974ad17928eb1f4ab9c3d9a4632839f30a861f9210e8ca1ef8292700df3bd58293aaaa2ad7b6b102912c3bf81db065d5438b430def797c4118d0c8261
7
- data.tar.gz: 04e9c08d9a5b1a11e55ee314a9c42be8d885c7be99e0fea08e93d4956efd088e556e049371ff5fe42044f1f2dc3a4cba7bcde3047cb103d700654343339e51e1
6
+ metadata.gz: 0cf5698a32ea120a09594c3180a5c0501d015a9de93455ef572149500ee0c89f5139d1220e81633c64af5f3e3669b487fbaa91f5b82de9edd65849bf185eac38
7
+ data.tar.gz: 9ad922fb31e63bdb06c73f45b9fd22725590032473ef591b8bb12bb42116c84d6f92e18c3ef1646b41e3ac7a7c5adf3212a2ac5b9920809fdcb0fef060dbe692
@@ -50,7 +50,7 @@ module Build
50
50
  end
51
51
 
52
52
  def eql?(other)
53
- other.kind_of?(self.class) and @path.eql?(other.path)
53
+ self.class.eql?(other.class) and @path.eql?(other.path)
54
54
  end
55
55
 
56
56
  def hash
@@ -49,7 +49,7 @@ module Build
49
49
  end
50
50
 
51
51
  def eql?(other)
52
- other.kind_of?(self.class) and @root.eql?(other.root) and @pattern.eql?(other.pattern)
52
+ self.class.eql?(other.class) and @root.eql?(other.root) and @pattern.eql?(other.pattern)
53
53
  end
54
54
 
55
55
  def hash
@@ -101,7 +101,7 @@ module Build
101
101
  end
102
102
 
103
103
  def eql?(other)
104
- other.kind_of?(self.class) and @list.eql?(other.list)
104
+ self.class.eql?(other.class) and @list.eql?(other.list)
105
105
  end
106
106
 
107
107
  def hash
@@ -159,7 +159,7 @@ module Build
159
159
  end
160
160
 
161
161
  def eql?(other)
162
- other.kind_of?(self.class) and @files.eql?(other.files)
162
+ self.class.eql?(other.class) and @files.eql?(other.files)
163
163
  end
164
164
 
165
165
  def hash
@@ -163,7 +163,7 @@ module Build
163
163
  end
164
164
 
165
165
  def eql?(other)
166
- @root.eql?(other.root) and @full_path.eql?(other.full_path)
166
+ self.class.eql?(other.class) and @root.eql?(other.root) and @full_path.eql?(other.full_path)
167
167
  end
168
168
 
169
169
  def ==(other)
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Build
22
22
  module Files
23
- VERSION = "0.2.3"
23
+ VERSION = "0.2.4"
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-files
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-09 00:00:00.000000000 Z
11
+ date: 2014-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler