sunflower 0.5.8 → 0.5.9
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/README +1 -1
- data/lib/sunflower/core.rb +2 -2
- metadata +1 -1
data/README
CHANGED
data/lib/sunflower/core.rb
CHANGED
|
@@ -40,7 +40,7 @@ end
|
|
|
40
40
|
#
|
|
41
41
|
# You can use multiple Sunflowers at once, to work on multiple wikis.
|
|
42
42
|
class Sunflower
|
|
43
|
-
VERSION = '0.5.
|
|
43
|
+
VERSION = '0.5.9'
|
|
44
44
|
|
|
45
45
|
INVALID_CHARS = %w(# < > [ ] | { })
|
|
46
46
|
INVALID_CHARS_REGEX = Regexp.union *INVALID_CHARS
|
|
@@ -260,7 +260,7 @@ class Sunflower
|
|
|
260
260
|
# merge
|
|
261
261
|
merged = out[0]
|
|
262
262
|
out.drop(1).each do |cur|
|
|
263
|
-
merged.
|
|
263
|
+
merged.sunflower_recursive_merge! cur
|
|
264
264
|
end
|
|
265
265
|
|
|
266
266
|
return merged
|