array-sorted-unique 1.0.0 → 1.1.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: array-sorted-unique
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -57,8 +57,6 @@ files:
57
57
  - lib/array/sorted/unique.rb
58
58
  - lib/array/unique/sorted.rb
59
59
  - lib/array-sorted-unique.rb
60
- - lib/sorted_array/unique/array_interface.rb
61
- - lib/sorted_array/unique.rb
62
60
  - spec/array/sorted/unique_spec.rb
63
61
  - README.md
64
62
  - CHANGELOG.rdoc
@@ -85,7 +83,6 @@ rubyforge_project: array-sorted-unique
85
83
  rubygems_version: 1.8.23
86
84
  signing_key:
87
85
  specification_version: 3
88
- summary: Provides Array::Sorted::Unique and its alias Array::Unique::Sorted as well
89
- as UniqueSortedArray and its alias SortedUniqueArray.
86
+ summary: Provides Array::Sorted::Unique and its alias Array::Unique::Sorted.
90
87
  test_files: []
91
88
  has_rdoc:
@@ -1,6 +0,0 @@
1
-
2
- class ::SortedArray::Unique < ::Array::Sorted::Unique
3
-
4
- include ::SortedArray::Unique::ArrayInterface
5
-
6
- end
@@ -1,10 +0,0 @@
1
-
2
- module ::SortedArray::Unique::ArrayInterface
3
-
4
- include ::UniqueArray::Interface
5
- include ::SortedArray::Interface
6
-
7
- instances_identify_as!( ::UniqueArray::Sorted )
8
- instances_identify_as!( ::SortedArray::Unique )
9
-
10
- end