right_data 0.5.24 → 0.5.25
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.
- data/lib/FileSystemItem.rb +5 -1
- metadata +4 -4
data/lib/FileSystemItem.rb
CHANGED
|
@@ -95,7 +95,11 @@ module RightData
|
|
|
95
95
|
end
|
|
96
96
|
|
|
97
97
|
def update_duplicate_ignorable_status
|
|
98
|
-
parent.
|
|
98
|
+
if parent.nil?
|
|
99
|
+
puts "# PARENT IS NIL TRYING TO update_duplicate_ignorable_status @ #{self.path}"
|
|
100
|
+
else
|
|
101
|
+
parent.increment_duplicate_children if((@ignore_children + @duplicate_children) == numberOfChildren)
|
|
102
|
+
end
|
|
99
103
|
end
|
|
100
104
|
|
|
101
105
|
def increment_duplicate_children
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: right_data
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 57
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 25
|
|
10
|
+
version: 0.5.25
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jonathan Siegel
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-08-
|
|
18
|
+
date: 2010-08-31 00:00:00 +01:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|