compo 0.5.0 → 0.5.1
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 +4 -4
- data/CHANGELOG +3 -0
- data/lib/compo/finders/url.rb +2 -2
- data/lib/compo/mixins/movable.rb +1 -2
- data/lib/compo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc4c09daf0279c2ca3cffe2f32a63cb2a4bcb74f
|
|
4
|
+
data.tar.gz: 4659db5651b06d888e3c0d8108fb543eaecd4fb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5d49930f609a167d35965624995e5f5888df39716ac88bf064d469a1b96aae7ae4676d2270aa40361980585685e590cda48467a7ce4788a161af0d3985847eb
|
|
7
|
+
data.tar.gz: ee61fe401bb472515cdda0aaf884ad87d19be05a8e6fea54fd1f1604fe7d08b791da2c050269b67eb7fccad91a0dc1849ffaff5e301b8432cdbf3ef8a2d09adc
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
0.5.1 (2014-07-10)
|
|
2
|
+
- Remove references to ‘ModelObject’, which is a leftover from previous code
|
|
3
|
+
of which compo was a part.
|
|
1
4
|
0.5.0 (2014-07-10) ‘Brimble’
|
|
2
5
|
- Implement a root finder, which has the ability to enumerate the entire path
|
|
3
6
|
from a parent-tracking composite object up to its root.
|
data/lib/compo/finders/url.rb
CHANGED
|
@@ -56,8 +56,8 @@ module Compo
|
|
|
56
56
|
# finder.run { |item| item }
|
|
57
57
|
# #=> item
|
|
58
58
|
#
|
|
59
|
-
# @yieldparam resource [
|
|
60
|
-
# @yieldparam args
|
|
59
|
+
# @yieldparam resource [Object] The resource found.
|
|
60
|
+
# @yieldparam args [Array] The splat from above.
|
|
61
61
|
#
|
|
62
62
|
# @return [Object] The return value of the block.
|
|
63
63
|
def run
|
data/lib/compo/mixins/movable.rb
CHANGED
|
@@ -16,8 +16,7 @@ module Compo
|
|
|
16
16
|
# no other live references).
|
|
17
17
|
# movable.move_to(nil, nil)
|
|
18
18
|
#
|
|
19
|
-
# @param new_parent [
|
|
20
|
-
# nil).
|
|
19
|
+
# @param new_parent [Object] The new parent for this object (can be nil).
|
|
21
20
|
# @param new_id [Object] The new ID under which the object will exist in
|
|
22
21
|
# the parent.
|
|
23
22
|
#
|
data/lib/compo/version.rb
CHANGED