array-unique 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,20 +7,8 @@ files = [
7
7
 
8
8
  ]
9
9
 
10
- second_basepath = '../unique_array'
11
-
12
- second_files = [
13
-
14
- 'array_interface'
15
-
16
- ]
17
-
18
10
  files.each do |this_file|
19
11
  require_relative( File.join( basepath, this_file ) + '.rb' )
20
12
  end
21
- second_files.each do |this_file|
22
- require_relative( File.join( second_basepath, this_file ) + '.rb' )
23
- end
24
13
 
25
14
  require_relative( basepath + '.rb' )
26
- require_relative( second_basepath + '.rb' )
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: array-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:
@@ -39,8 +39,6 @@ files:
39
39
  - lib/array/unique/array_interface.rb
40
40
  - lib/array/unique.rb
41
41
  - lib/array-unique.rb
42
- - lib/unique_array/array_interface.rb
43
- - lib/unique_array.rb
44
42
  - spec/array/unique_spec.rb
45
43
  - README.md
46
44
  - CHANGELOG.rdoc
@@ -67,6 +65,6 @@ rubyforge_project: array-unique
67
65
  rubygems_version: 1.8.23
68
66
  signing_key:
69
67
  specification_version: 3
70
- summary: Provides Array::Unique and UniqueArray.
68
+ summary: Provides Array::Unique.
71
69
  test_files: []
72
70
  has_rdoc:
@@ -1,6 +0,0 @@
1
-
2
- class ::UniqueArray < ::Array::Unique
3
-
4
- include ::UniqueArray::Interface
5
-
6
- end
@@ -1,9 +0,0 @@
1
-
2
- module ::UniqueArray::Interface
3
-
4
- include ::Array::Unique::Interface
5
- include ::HookedArray::Interface
6
-
7
- instances_identify_as!( ::UniqueArray )
8
-
9
- end