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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b36ac99cbd26e363126ccaa0e1a2dd20ba9d4b10
4
- data.tar.gz: 3a026f05f3e59917727599e3cc83b2a7888e9bb8
3
+ metadata.gz: cc4c09daf0279c2ca3cffe2f32a63cb2a4bcb74f
4
+ data.tar.gz: 4659db5651b06d888e3c0d8108fb543eaecd4fb8
5
5
  SHA512:
6
- metadata.gz: 457dec32c46dabfa7e03b79545930df61cd9b9777dab0f8d8c436ec4dc425e091ab04b85af9810302fe9725809edab277c4f90a032676acc30fd3711d8c9032f
7
- data.tar.gz: 18fd9981c0e31255bce927311b4c624ec2c08adbc27c9de043353228267230e3f896cfd6ac068ff28b2859dba8ca56a1869847cc57b8d65996aada33bed5af01
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.
@@ -56,8 +56,8 @@ module Compo
56
56
  # finder.run { |item| item }
57
57
  # #=> item
58
58
  #
59
- # @yieldparam resource [ModelObject] The resource found.
60
- # @yieldparam args [Array] The splat from above.
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
@@ -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 [ModelObject] The new parent for this object (can be
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
  #
@@ -1,4 +1,4 @@
1
1
  # The current gem version. See CHANGELOG for information.
2
2
  module Compo
3
- VERSION = '0.5.0'
3
+ VERSION = '0.5.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Windsor