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.
- data/lib/array/requires.rb +0 -12
- metadata +2 -4
- data/lib/unique_array.rb +0 -6
- data/lib/unique_array/array_interface.rb +0 -9
data/lib/array/requires.rb
CHANGED
@@ -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.
|
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
|
68
|
+
summary: Provides Array::Unique.
|
71
69
|
test_files: []
|
72
70
|
has_rdoc:
|
data/lib/unique_array.rb
DELETED