array-unique-compositing 1.0.0 → 1.0.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.
data/CHANGELOG.rdoc CHANGED
@@ -14,3 +14,7 @@ Added :include? implementation using @unique_keys instead of linear search.
14
14
  == 6/1/12
15
15
 
16
16
  Added :configuration_instance parameter to :initialize.
17
+
18
+ == 7/09/12
19
+
20
+ Removed module-cluster dependency.
@@ -6,28 +6,6 @@ module ::Array::Unique::Compositing::ArrayInterface
6
6
 
7
7
  instances_identify_as!( ::Array::Unique::Compositing )
8
8
 
9
- extend ::Module::Cluster
10
-
11
- cluster( :unique_compositing_array_interface ).before_include.cascade_to( :class ) do |hooked_instance|
12
-
13
- hooked_instance.class_eval do
14
-
15
- unless method_defined?( :unique_set )
16
- alias_method :unique_set, :[]=
17
- end
18
-
19
- unless method_defined?( :unique_insert )
20
- alias_method :unique_insert, :insert
21
- end
22
-
23
- unless method_defined?( :unique_delete_at )
24
- alias_method :unique_delete_at, :delete_at
25
- end
26
-
27
- end
28
-
29
- end
30
-
31
9
  #########
32
10
  # []= #
33
11
  #########
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: array-unique-compositing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-06 00:00:00.000000000 Z
12
+ date: 2012-07-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: array-compositing
@@ -59,7 +59,6 @@ files:
59
59
  - lib/array-unique-compositing.rb
60
60
  - spec/array/unique/compositing_spec.rb
61
61
  - README.md
62
- - README.rdoc
63
62
  - CHANGELOG.rdoc
64
63
  homepage: http://rubygems.org/gems/array-unique-compositing
65
64
  licenses: []
@@ -72,7 +71,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
72
71
  requirements:
73
72
  - - ! '>='
74
73
  - !ruby/object:Gem::Version
75
- version: '0'
74
+ version: 1.9.1
76
75
  required_rubygems_version: !ruby/object:Gem::Requirement
77
76
  none: false
78
77
  requirements:
data/README.rdoc DELETED
File without changes