sixarm_ruby_ramp 4.2.7 → 5.0.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.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +2 -2
- data/lib/sixarm_ruby_ramp/array.rb +44 -35
- data/lib/sixarm_ruby_ramp/class.rb +1 -1
- data/lib/sixarm_ruby_ramp/csv.rb +1 -1
- data/test/sixarm_ruby_ramp_test.rb +0 -3
- data/test/sixarm_ruby_ramp_test/array_test.rb +52 -67
- metadata +127 -52
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5547d2772e156e63b1edcfad4efadecf42425cd42f987f136f50d31de7cf556f
|
4
|
+
data.tar.gz: 5a75fcd3056cd661467500dfb643089a03f9353d37f4af83a7574161c77cb86c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29b6178c0d767097bbf5706964c94e8d5ea5df2c195fbcfdf59a30605434e9fe939edd504dc10e2172d855556fa037798d8b202d6e415888ff967d83c76087f9
|
7
|
+
data.tar.gz: 2dc1ffd5e48da9d35f3b881853843d6f1e7875157602a52339be17f4eb7fdc8a551f5b681dc8f6abd21891fc26e46445b4e7f8f11c1e1cecf86748df9438d0ad
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
�@�P��Q�ڿp������e�u�,@c��v��<����!b��8�����"MA�D��
|
2
|
+
Cң�������@=ۏO��!�F��e�G����y�^+�SK4��ϖ���� d��6���iم�bױ�v5d�0�>�V��Rʝ:���Lܔ����5y��V��֤0y:�O��]ZX^�[E�������}S��i5��hB��͜+P��>�Z��)�SA{U9�3�òVЃsc��A0�J2��VF���E�%����>-��-E�)!�ž��D��>�2���Q�鶟୪�����.��.��p�;*�u�ޱ���<k�r�GX���54v|n6O�����D�?H�f��d�u����/S��v�;��n%�J%JEӦk���6}�yN.6�����)��l9�1j��j! Ë���U_��ػ�R�旮=#���!x�n����F3�OK��ۆY>��;��_�p��볁a:�k�y���<qc�pو���v)7��
|
@@ -21,13 +21,18 @@ class Array
|
|
21
21
|
# ['a','b','c'].rotate! => ['b','c','a']
|
22
22
|
# [].rotate! => []
|
23
23
|
#
|
24
|
+
# This implementation checks to see if the method name is already in use,
|
25
|
+
# because some Ruby versions have this method in the standard library.
|
26
|
+
#
|
24
27
|
# @return [Array] self
|
25
28
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
+
if !([].respond_to? :rotate!)
|
30
|
+
def rotate!
|
31
|
+
if size>0
|
32
|
+
push item=shift
|
33
|
+
end
|
34
|
+
self
|
29
35
|
end
|
30
|
-
self
|
31
36
|
end
|
32
37
|
|
33
38
|
|
@@ -216,42 +221,48 @@ class Array
|
|
216
221
|
#
|
217
222
|
##############################################################
|
218
223
|
|
219
|
-
|
220
|
-
|
221
|
-
# @
|
224
|
+
require 'csv'
|
225
|
+
|
226
|
+
# @return [String] a CSV (Comma Separated Value) lines
|
227
|
+
# representation of a multi-dimensional array.
|
222
228
|
#
|
223
|
-
#
|
229
|
+
# Each subarray becomes one line in the output.
|
224
230
|
#
|
225
231
|
# @example of a multi-dimensional array
|
226
232
|
#
|
227
|
-
#
|
233
|
+
# [[1,2,3],[4,5,6]] => ["1,2,3\n", "4,5,6\n"]
|
228
234
|
#
|
229
|
-
|
235
|
+
|
236
|
+
|
237
|
+
def to_csv_lines(ops={})
|
238
|
+
map{|row| row.to_csv}
|
239
|
+
end
|
240
|
+
|
241
|
+
# @return [String] a CSV (Comma Separated Value) string
|
242
|
+
# representation of a multi-dimensional array.
|
230
243
|
#
|
231
|
-
#
|
244
|
+
# Each subarray becomes one line in the output.
|
232
245
|
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
|
236
|
-
|
246
|
+
# @example of a multi-dimensional array
|
247
|
+
#
|
248
|
+
# [[1,2,3],[4,5,6]] => "1,2,3\n4,5,6\n"
|
249
|
+
#
|
250
|
+
def to_csv_text(ops={})
|
251
|
+
to_csv_lines.join
|
252
|
+
end
|
237
253
|
|
238
|
-
return "" if size==0
|
239
254
|
|
240
|
-
|
255
|
+
# @return [String] a TSV (Tab Separated Value) lines
|
256
|
+
# representation of a multi-dimensional array.
|
257
|
+
#
|
258
|
+
# Each subarray becomes one line in the output.
|
259
|
+
#
|
260
|
+
# @example of a blank array
|
261
|
+
#
|
262
|
+
# [[1,2,3],[4,5,6]] => ["1\t2\t3\n", "4\t5\t6\n"]
|
241
263
|
|
242
|
-
|
243
|
-
|
244
|
-
generator.generate(str) do |csv|
|
245
|
-
self.each do |row|
|
246
|
-
csv << row
|
247
|
-
end
|
248
|
-
end
|
249
|
-
else
|
250
|
-
generator.generate(str) do |csv|
|
251
|
-
csv << self.map{|item| item.to_s}
|
252
|
-
end
|
253
|
-
end
|
254
|
-
return str
|
264
|
+
def to_tsv_lines(ops={})
|
265
|
+
map{|row| row.join("\t")+"\n"}
|
255
266
|
end
|
256
267
|
|
257
268
|
|
@@ -262,12 +273,10 @@ class Array
|
|
262
273
|
#
|
263
274
|
# @example of a blank array
|
264
275
|
#
|
265
|
-
#
|
276
|
+
# [[1,2,3],[4,5,6]] => "1\t2\t3\n4\t5\t6\n"
|
266
277
|
|
267
|
-
def
|
268
|
-
|
278
|
+
def to_tsv_text(ops={})
|
279
|
+
to_tsv_lines.join
|
269
280
|
end
|
270
281
|
|
271
|
-
alias to_tdf to_tsv
|
272
|
-
|
273
282
|
end
|
data/lib/sixarm_ruby_ramp/csv.rb
CHANGED
@@ -1,11 +1,8 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
require "minitest/autorun"
|
3
|
-
require "coveralls"
|
4
3
|
require "simplecov"
|
5
|
-
Coveralls.wear!
|
6
4
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
|
7
5
|
SimpleCov::Formatter::HTMLFormatter,
|
8
|
-
Coveralls::SimpleCov::Formatter
|
9
6
|
])
|
10
7
|
SimpleCov.start
|
11
8
|
require "sixarm_ruby_ramp"
|
@@ -4,8 +4,10 @@ require "csv"
|
|
4
4
|
|
5
5
|
class ArrayTest < Minitest::Test
|
6
6
|
|
7
|
-
A=[
|
8
|
-
B=[
|
7
|
+
A=["a", "b", "c", "d"]
|
8
|
+
B=["w", "x", "y", "z"]
|
9
|
+
GRID = [["a", "b", "c"], ["d", "e", "f"], ["g", "h", "i"]]
|
10
|
+
|
9
11
|
|
10
12
|
def test_size_with_one_item
|
11
13
|
assert_equal(true,[1].size?)
|
@@ -30,13 +32,13 @@ class ArrayTest < Minitest::Test
|
|
30
32
|
def test_rotate
|
31
33
|
a=A.dup
|
32
34
|
a.rotate!
|
33
|
-
assert_equal([
|
35
|
+
assert_equal(["b", "c", "d", "a"],a)
|
34
36
|
a.rotate!
|
35
|
-
assert_equal([
|
37
|
+
assert_equal(["c", "d", "a", "b"],a)
|
36
38
|
a.rotate!
|
37
|
-
assert_equal([
|
39
|
+
assert_equal(["d", "a", "b", "c"],a)
|
38
40
|
a.rotate!
|
39
|
-
assert_equal([
|
41
|
+
assert_equal(["a", "b", "c", "d"],a)
|
40
42
|
end
|
41
43
|
|
42
44
|
def test_rotate_with_empty
|
@@ -68,7 +70,7 @@ class ArrayTest < Minitest::Test
|
|
68
70
|
end
|
69
71
|
|
70
72
|
def test_onto
|
71
|
-
assert_equal({
|
73
|
+
assert_equal({"a"=>"w", "b"=>"x", "c"=>"y", "d"=>"z"},A.onto(B))
|
72
74
|
end
|
73
75
|
|
74
76
|
def test_onto_with_empty
|
@@ -94,11 +96,11 @@ class ArrayTest < Minitest::Test
|
|
94
96
|
end
|
95
97
|
|
96
98
|
def test_shifted
|
97
|
-
a=[
|
98
|
-
assert_equal([
|
99
|
-
assert_equal([
|
100
|
-
assert_equal([
|
101
|
-
assert_equal([
|
99
|
+
a=["a", "b", "c"]
|
100
|
+
assert_equal([ "b", "c"],a.shifted)
|
101
|
+
assert_equal(["a", "b", "c"],a.shifted(0))
|
102
|
+
assert_equal([ "b", "c"],a.shifted(1))
|
103
|
+
assert_equal([ "c"],a.shifted(2))
|
102
104
|
assert_equal([ ],a.shifted(3))
|
103
105
|
assert_nil( a.shifted(4))
|
104
106
|
end
|
@@ -117,11 +119,11 @@ class ArrayTest < Minitest::Test
|
|
117
119
|
|
118
120
|
# alias: test_cdr must be idential to test_shifted
|
119
121
|
def test_cdr
|
120
|
-
a=[
|
121
|
-
assert_equal([
|
122
|
-
assert_equal([
|
123
|
-
assert_equal([
|
124
|
-
assert_equal([
|
122
|
+
a=["a", "b", "c"]
|
123
|
+
assert_equal([ "b", "c"],a.cdr)
|
124
|
+
assert_equal(["a", "b", "c"],a.cdr(0))
|
125
|
+
assert_equal([ "b", "c"],a.cdr(1))
|
126
|
+
assert_equal([ "c"],a.cdr(2))
|
125
127
|
assert_equal([ ],a.cdr(3))
|
126
128
|
assert_nil( a.cdr(4))
|
127
129
|
end
|
@@ -143,11 +145,11 @@ class ArrayTest < Minitest::Test
|
|
143
145
|
|
144
146
|
# alias: test_rest must be idential to test_shifted
|
145
147
|
def test_rest
|
146
|
-
a=[
|
147
|
-
assert_equal([
|
148
|
-
assert_equal([
|
149
|
-
assert_equal([
|
150
|
-
assert_equal([
|
148
|
+
a=["a", "b", "c"]
|
149
|
+
assert_equal([ "b", "c"],a.rest)
|
150
|
+
assert_equal(["a", "b", "c"],a.rest(0))
|
151
|
+
assert_equal([ "b", "c"],a.rest(1))
|
152
|
+
assert_equal([ "c"],a.rest(2))
|
151
153
|
assert_equal([ ],a.rest(3))
|
152
154
|
assert_nil( a.rest(4))
|
153
155
|
end
|
@@ -168,12 +170,12 @@ class ArrayTest < Minitest::Test
|
|
168
170
|
end
|
169
171
|
|
170
172
|
def test_shifted_bang
|
171
|
-
a=[
|
172
|
-
a=[
|
173
|
-
a=[
|
174
|
-
a=[
|
175
|
-
a=[
|
176
|
-
a=[
|
173
|
+
a=["a", "b", "c"]; a.shifted!; assert_equal([ "b", "c"],a)
|
174
|
+
a=["a", "b", "c"]; a.shifted!(0); assert_equal(["a", "b", "c"],a)
|
175
|
+
a=["a", "b", "c"]; a.shifted!(1); assert_equal([ "b", "c"],a)
|
176
|
+
a=["a", "b", "c"]; a.shifted!(2); assert_equal([ "c"],a)
|
177
|
+
a=["a", "b", "c"]; a.shifted!(3); assert_equal([ ],a)
|
178
|
+
a=["a", "b", "c"]; a.shifted!(4); assert_equal([ ],a)
|
177
179
|
end
|
178
180
|
|
179
181
|
def test_shifted_bang_with_negative_count
|
@@ -190,12 +192,12 @@ class ArrayTest < Minitest::Test
|
|
190
192
|
|
191
193
|
# alias: test_cdr_bang must be identical to test_shifted_bang
|
192
194
|
def test_cdr_bang
|
193
|
-
a=[
|
194
|
-
a=[
|
195
|
-
a=[
|
196
|
-
a=[
|
197
|
-
a=[
|
198
|
-
a=[
|
195
|
+
a=["a", "b", "c"]; a.cdr!; assert_equal([ "b", "c"],a)
|
196
|
+
a=["a", "b", "c"]; a.cdr!(0); assert_equal(["a", "b", "c"],a)
|
197
|
+
a=["a", "b", "c"]; a.cdr!(1); assert_equal([ "b", "c"],a)
|
198
|
+
a=["a", "b", "c"]; a.cdr!(2); assert_equal([ "c"],a)
|
199
|
+
a=["a", "b", "c"]; a.cdr!(3); assert_equal([ ],a)
|
200
|
+
a=["a", "b", "c"]; a.cdr!(4); assert_equal([ ],a)
|
199
201
|
end
|
200
202
|
|
201
203
|
# alias: test_cdr_bang must be identical to test_shifted_bang
|
@@ -215,12 +217,12 @@ class ArrayTest < Minitest::Test
|
|
215
217
|
|
216
218
|
# alias: test_rest_bang must be identical to test_shifted_bang
|
217
219
|
def test_rest_bang
|
218
|
-
a=[
|
219
|
-
a=[
|
220
|
-
a=[
|
221
|
-
a=[
|
222
|
-
a=[
|
223
|
-
a=[
|
220
|
+
a=["a", "b", "c"]; a.rest!; assert_equal([ "b", "c"],a)
|
221
|
+
a=["a", "b", "c"]; a.rest!(0); assert_equal(["a", "b", "c"],a)
|
222
|
+
a=["a", "b", "c"]; a.rest!(1); assert_equal([ "b", "c"],a)
|
223
|
+
a=["a", "b", "c"]; a.rest!(2); assert_equal([ "c"],a)
|
224
|
+
a=["a", "b", "c"]; a.rest!(3); assert_equal([ ],a)
|
225
|
+
a=["a", "b", "c"]; a.rest!(4); assert_equal([ ],a)
|
224
226
|
end
|
225
227
|
|
226
228
|
# alias: test_rest_bang must be identical to test_shifted_bang
|
@@ -239,41 +241,24 @@ class ArrayTest < Minitest::Test
|
|
239
241
|
end
|
240
242
|
|
241
243
|
def test_car
|
242
|
-
a=[
|
243
|
-
assert_equal(
|
244
|
-
end
|
245
|
-
|
246
|
-
def test_to_csv_one_dimensional
|
247
|
-
assert_equal("a,b,c,d\n",A.to_csv)
|
248
|
-
end
|
249
|
-
|
250
|
-
def test_to_csv_with_empty
|
251
|
-
assert_equal("",[].to_csv)
|
252
|
-
end
|
253
|
-
|
254
|
-
def test_to_csv_multi_dimensional
|
255
|
-
a=[["a","b","c"], ["d","e","f"],["g","h","i"]]
|
256
|
-
assert_equal("a,b,c\nd,e,f\ng,h,i\n",a.to_csv)
|
244
|
+
a=["a", "b", "c"]
|
245
|
+
assert_equal("a",a.car)
|
257
246
|
end
|
258
247
|
|
259
|
-
def
|
260
|
-
|
261
|
-
assert_equal("a\tb\nc\td\ne\tf\n",a.to_tsv)
|
248
|
+
def test_to_csv_lines
|
249
|
+
assert_equal(["a,b,c\n", "d,e,f\n", "g,h,i\n"], GRID.to_csv_lines)
|
262
250
|
end
|
263
251
|
|
264
|
-
def
|
265
|
-
assert_equal("",
|
252
|
+
def test_to_csv_text
|
253
|
+
assert_equal("a,b,c\nd,e,f\ng,h,i\n", GRID.to_csv_text)
|
266
254
|
end
|
267
255
|
|
268
|
-
|
269
|
-
|
270
|
-
a=[["a", "b"], ["c", "d"], ["e", "f"]]
|
271
|
-
assert_equal("a\tb\nc\td\ne\tf\n",a.to_tdf)
|
256
|
+
def test_to_tsv_lines
|
257
|
+
assert_equal(["a\tb\tc\n", "d\te\tf\n", "g\th\ti\n"], GRID.to_tsv_lines)
|
272
258
|
end
|
273
259
|
|
274
|
-
|
275
|
-
|
276
|
-
assert_equal("",[].to_tdf)
|
260
|
+
def test_to_tsv_text
|
261
|
+
assert_equal("a\tb\tc\nd\te\tf\ng\th\ti\n", GRID.to_tsv_text)
|
277
262
|
end
|
278
263
|
|
279
264
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sixarm_ruby_ramp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SixArm
|
@@ -10,41 +10,36 @@ bindir: bin
|
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
Drcxp/zlVhud+a0ezdnyNvF520arJWvqA4GrOo8F+TT2vVrjscgYjiVGdSq+8wQv
|
42
|
-
Efa5jhe8QwG7R1rdpMMP5yBSAqWuFBczMveX5j4rp9Ifw5/XsZbgwcmdm26bjhzh
|
43
|
-
w2grAHIhvR9mztm6uXQlZhv1fu3P+RWHDSYhnZSCJSCdxPzQJ1mG5T5ahiL3HvCZ
|
44
|
-
2AC9FOGkybW6DJEFSFFMlNk0IILsa/gNp8ufGuTVLWF9FUUdMNK+TMbghnifT8/1
|
45
|
-
n+ES/gQPOnvmVkLDGw==
|
13
|
+
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
|
46
41
|
-----END CERTIFICATE-----
|
47
|
-
date:
|
42
|
+
date: 2018-06-22 00:00:00.000000000 Z
|
48
43
|
dependencies:
|
49
44
|
- !ruby/object:Gem::Dependency
|
50
45
|
name: sixarm_ruby_rexml
|
@@ -112,7 +107,7 @@ dependencies:
|
|
112
107
|
requirements:
|
113
108
|
- - ">="
|
114
109
|
- !ruby/object:Gem::Version
|
115
|
-
version: 5.
|
110
|
+
version: 5.11.3
|
116
111
|
- - "<"
|
117
112
|
- !ruby/object:Gem::Version
|
118
113
|
version: '6'
|
@@ -122,7 +117,7 @@ dependencies:
|
|
122
117
|
requirements:
|
123
118
|
- - ">="
|
124
119
|
- !ruby/object:Gem::Version
|
125
|
-
version: 5.
|
120
|
+
version: 5.11.3
|
126
121
|
- - "<"
|
127
122
|
- !ruby/object:Gem::Version
|
128
123
|
version: '6'
|
@@ -150,29 +145,29 @@ dependencies:
|
|
150
145
|
name: rake
|
151
146
|
requirement: !ruby/object:Gem::Requirement
|
152
147
|
requirements:
|
153
|
-
- - "
|
148
|
+
- - ">="
|
154
149
|
- !ruby/object:Gem::Version
|
155
|
-
version:
|
150
|
+
version: 12.3.1
|
156
151
|
- - "<"
|
157
152
|
- !ruby/object:Gem::Version
|
158
|
-
version: '
|
153
|
+
version: '13'
|
159
154
|
type: :development
|
160
155
|
prerelease: false
|
161
156
|
version_requirements: !ruby/object:Gem::Requirement
|
162
157
|
requirements:
|
163
|
-
- - "
|
158
|
+
- - ">="
|
164
159
|
- !ruby/object:Gem::Version
|
165
|
-
version:
|
160
|
+
version: 12.3.1
|
166
161
|
- - "<"
|
167
162
|
- !ruby/object:Gem::Version
|
168
|
-
version: '
|
163
|
+
version: '13'
|
169
164
|
- !ruby/object:Gem::Dependency
|
170
165
|
name: simplecov
|
171
166
|
requirement: !ruby/object:Gem::Requirement
|
172
167
|
requirements:
|
173
168
|
- - ">="
|
174
169
|
- !ruby/object:Gem::Version
|
175
|
-
version: 0.
|
170
|
+
version: 0.16.1
|
176
171
|
- - "<"
|
177
172
|
- !ruby/object:Gem::Version
|
178
173
|
version: '2'
|
@@ -182,30 +177,110 @@ dependencies:
|
|
182
177
|
requirements:
|
183
178
|
- - ">="
|
184
179
|
- !ruby/object:Gem::Version
|
185
|
-
version: 0.
|
180
|
+
version: 0.16.1
|
186
181
|
- - "<"
|
187
182
|
- !ruby/object:Gem::Version
|
188
183
|
version: '2'
|
189
184
|
- !ruby/object:Gem::Dependency
|
190
|
-
name:
|
185
|
+
name: flog
|
191
186
|
requirement: !ruby/object:Gem::Requirement
|
192
187
|
requirements:
|
193
188
|
- - ">="
|
194
189
|
- !ruby/object:Gem::Version
|
195
|
-
version:
|
190
|
+
version: 4.6.2
|
196
191
|
- - "<"
|
197
192
|
- !ruby/object:Gem::Version
|
198
|
-
version: '
|
193
|
+
version: '5'
|
199
194
|
type: :development
|
200
195
|
prerelease: false
|
201
196
|
version_requirements: !ruby/object:Gem::Requirement
|
202
197
|
requirements:
|
203
198
|
- - ">="
|
204
199
|
- !ruby/object:Gem::Version
|
205
|
-
version:
|
200
|
+
version: 4.6.2
|
206
201
|
- - "<"
|
207
202
|
- !ruby/object:Gem::Version
|
208
|
-
version: '
|
203
|
+
version: '5'
|
204
|
+
- !ruby/object:Gem::Dependency
|
205
|
+
name: flay
|
206
|
+
requirement: !ruby/object:Gem::Requirement
|
207
|
+
requirements:
|
208
|
+
- - ">="
|
209
|
+
- !ruby/object:Gem::Version
|
210
|
+
version: 2.12.0
|
211
|
+
- - "<"
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: '3'
|
214
|
+
type: :development
|
215
|
+
prerelease: false
|
216
|
+
version_requirements: !ruby/object:Gem::Requirement
|
217
|
+
requirements:
|
218
|
+
- - ">="
|
219
|
+
- !ruby/object:Gem::Version
|
220
|
+
version: 2.12.0
|
221
|
+
- - "<"
|
222
|
+
- !ruby/object:Gem::Version
|
223
|
+
version: '3'
|
224
|
+
- !ruby/object:Gem::Dependency
|
225
|
+
name: reek
|
226
|
+
requirement: !ruby/object:Gem::Requirement
|
227
|
+
requirements:
|
228
|
+
- - ">="
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: 4.8.1
|
231
|
+
- - "<"
|
232
|
+
- !ruby/object:Gem::Version
|
233
|
+
version: '5'
|
234
|
+
type: :development
|
235
|
+
prerelease: false
|
236
|
+
version_requirements: !ruby/object:Gem::Requirement
|
237
|
+
requirements:
|
238
|
+
- - ">="
|
239
|
+
- !ruby/object:Gem::Version
|
240
|
+
version: 4.8.1
|
241
|
+
- - "<"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '5'
|
244
|
+
- !ruby/object:Gem::Dependency
|
245
|
+
name: rubycritic
|
246
|
+
requirement: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - ">="
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: 3.4.0
|
251
|
+
- - "<"
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
version: '4'
|
254
|
+
type: :development
|
255
|
+
prerelease: false
|
256
|
+
version_requirements: !ruby/object:Gem::Requirement
|
257
|
+
requirements:
|
258
|
+
- - ">="
|
259
|
+
- !ruby/object:Gem::Version
|
260
|
+
version: 3.4.0
|
261
|
+
- - "<"
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: '4'
|
264
|
+
- !ruby/object:Gem::Dependency
|
265
|
+
name: rubocop
|
266
|
+
requirement: !ruby/object:Gem::Requirement
|
267
|
+
requirements:
|
268
|
+
- - ">="
|
269
|
+
- !ruby/object:Gem::Version
|
270
|
+
version: 0.57.2
|
271
|
+
- - "<"
|
272
|
+
- !ruby/object:Gem::Version
|
273
|
+
version: '1'
|
274
|
+
type: :development
|
275
|
+
prerelease: false
|
276
|
+
version_requirements: !ruby/object:Gem::Requirement
|
277
|
+
requirements:
|
278
|
+
- - ">="
|
279
|
+
- !ruby/object:Gem::Version
|
280
|
+
version: 0.57.2
|
281
|
+
- - "<"
|
282
|
+
- !ruby/object:Gem::Version
|
283
|
+
version: '1'
|
209
284
|
description: Adds extensions to Array, Date, Enumerable, File, Hash, IO, String, Time,
|
210
285
|
etc.
|
211
286
|
email: sixarm@sixarm.com
|
@@ -290,7 +365,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
290
365
|
requirements:
|
291
366
|
- - ">="
|
292
367
|
- !ruby/object:Gem::Version
|
293
|
-
version: '
|
368
|
+
version: '2.5'
|
294
369
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
295
370
|
requirements:
|
296
371
|
- - ">="
|
@@ -298,7 +373,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
298
373
|
version: '0'
|
299
374
|
requirements: []
|
300
375
|
rubyforge_project:
|
301
|
-
rubygems_version: 2.
|
376
|
+
rubygems_version: 2.7.7
|
302
377
|
signing_key:
|
303
378
|
specification_version: 4
|
304
379
|
summary: SixArm.com → Ruby → Ramp provides base extensions to ruby classes.
|
metadata.gz.sig
CHANGED
Binary file
|