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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fda20cf0bc2fa746b030377ffe0535beb7489f62
4
- data.tar.gz: 6689f6fb270d2a86403a5584a55b4defda75c620
2
+ SHA256:
3
+ metadata.gz: 5547d2772e156e63b1edcfad4efadecf42425cd42f987f136f50d31de7cf556f
4
+ data.tar.gz: 5a75fcd3056cd661467500dfb643089a03f9353d37f4af83a7574161c77cb86c
5
5
  SHA512:
6
- metadata.gz: 58ec449d320fbc1fbdd483792dc92a611d12a35f7c4b94ab0da01d72b7776e1ae63c16436e35f4145927d0ff9e02c15bc6a71a1b9fdc03b2a600bd1c40177619
7
- data.tar.gz: 128d9ae08542ad38a65dab78078523e5832338d82e92f4bb562318fb6d066f115319ccae2427f4f9e5d6a922c77db577f80a55297e2e51d0e8b81c346528375a
6
+ metadata.gz: 29b6178c0d767097bbf5706964c94e8d5ea5df2c195fbcfdf59a30605434e9fe939edd504dc10e2172d855556fa037798d8b202d6e415888ff967d83c76087f9
7
+ data.tar.gz: 2dc1ffd5e48da9d35f3b881853843d6f1e7875157602a52339be17f4eb7fdc8a551f5b681dc8f6abd21891fc26e46445b4e7f8f11c1e1cecf86748df9438d0ad
Binary file
data.tar.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- �KӇ.}i1���}�7#&�ڰ?����ϸLr�c'��?a����X逥��P�nX��./��NI]����Y3�a������H_��"$i>���s��H�&�X�c�B&^IdLU]_�?u��*eڟC��ƵQj`qe��ޟvz�V|p!����l�z�rca����f1��T�� _V�O ����b%��Q�D�{kLs�Ү��*3�� o ��f�\ -ˢ�0�C� �5B�f �e�q�Z��-�K����K!?�O)a>6����N��0�_ҍ�
2
- .�r�
1
+ �@�P��Q�ڿp������e�u�,@c��v��<����!b��8�����"MA�D��
2
+ Cң�������@=ۏ O��!�F��e�G����y�^+�SK4��ϖ��� � d ��6���iم�bױ�v 5d�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
- def rotate!
27
- if size>0
28
- push item=shift
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
- # @return [String] a CSV (Comma Separated Value) string of this array.
220
- #
221
- # @example of a one-dimensional array
224
+ require 'csv'
225
+
226
+ # @return [String] a CSV (Comma Separated Value) lines
227
+ # representation of a multi-dimensional array.
222
228
  #
223
- # [1,2,3].to_csv => "1,2,3\n"
229
+ # Each subarray becomes one line in the output.
224
230
  #
225
231
  # @example of a multi-dimensional array
226
232
  #
227
- # [[1,2,3],[4,5,6]] => "1,2,3\n4,5,6\n"
233
+ # [[1,2,3],[4,5,6]] => ["1,2,3\n", "4,5,6\n"]
228
234
  #
229
- # @example of a blank array
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
- # [].to_csv => ""
244
+ # Each subarray becomes one line in the output.
232
245
  #
233
- # N.b. this method uses the multi-dimensional if the
234
- # array's first item is also an array.
235
-
236
- def to_csv(ops={})
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
- generator = RUBY_VERSION >= "1.9" ? CSV : CSV::Writer
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
- str=''
243
- if size>0 and self[0].is_a?Array
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
- # [].to_csv => ""
276
+ # [[1,2,3],[4,5,6]] => "1\t2\t3\n4\t5\t6\n"
266
277
 
267
- def to_tsv(ops={})
268
- self.map{|row| row.join("\t")+"\n"}.join
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
@@ -28,7 +28,7 @@ class Class
28
28
  }
29
29
  yield
30
30
  self.class_eval {
31
- private *saved_private_instance_methods
31
+ private *saved_private_instance_methods
32
32
  protected *saved_protected_instance_methods
33
33
  }
34
34
  end
@@ -34,7 +34,7 @@ class CSV
34
34
  'Pragma' => 'no-cache',
35
35
  'Content-Disposition' => "attachment; filename=\"#{filename}\"",
36
36
  }
37
- end
37
+ end
38
38
 
39
39
 
40
40
  # Helper to try to "do the right thing" for the common case of Rails & MS IE.
@@ -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=['a','b','c','d']
8
- B=['w','x','y','z']
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(['b','c','d','a'],a)
35
+ assert_equal(["b", "c", "d", "a"],a)
34
36
  a.rotate!
35
- assert_equal(['c','d','a','b'],a)
37
+ assert_equal(["c", "d", "a", "b"],a)
36
38
  a.rotate!
37
- assert_equal(['d','a','b','c'],a)
39
+ assert_equal(["d", "a", "b", "c"],a)
38
40
  a.rotate!
39
- assert_equal(['a','b','c','d'],a)
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({'a'=>'w', 'b'=>'x', 'c'=>'y', 'd'=>'z'},A.onto(B))
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=['a','b','c']
98
- assert_equal([ 'b','c'],a.shifted)
99
- assert_equal(['a','b','c'],a.shifted(0))
100
- assert_equal([ 'b','c'],a.shifted(1))
101
- assert_equal([ 'c'],a.shifted(2))
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=['a','b','c']
121
- assert_equal([ 'b','c'],a.cdr)
122
- assert_equal(['a','b','c'],a.cdr(0))
123
- assert_equal([ 'b','c'],a.cdr(1))
124
- assert_equal([ 'c'],a.cdr(2))
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=['a','b','c']
147
- assert_equal([ 'b','c'],a.rest)
148
- assert_equal(['a','b','c'],a.rest(0))
149
- assert_equal([ 'b','c'],a.rest(1))
150
- assert_equal([ 'c'],a.rest(2))
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=['a','b','c']; a.shifted!; assert_equal([ 'b','c'],a)
172
- a=['a','b','c']; a.shifted!(0); assert_equal(['a','b','c'],a)
173
- a=['a','b','c']; a.shifted!(1); assert_equal([ 'b','c'],a)
174
- a=['a','b','c']; a.shifted!(2); assert_equal([ 'c'],a)
175
- a=['a','b','c']; a.shifted!(3); assert_equal([ ],a)
176
- a=['a','b','c']; a.shifted!(4); assert_equal([ ],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=['a','b','c']; a.cdr!; assert_equal([ 'b','c'],a)
194
- a=['a','b','c']; a.cdr!(0); assert_equal(['a','b','c'],a)
195
- a=['a','b','c']; a.cdr!(1); assert_equal([ 'b','c'],a)
196
- a=['a','b','c']; a.cdr!(2); assert_equal([ 'c'],a)
197
- a=['a','b','c']; a.cdr!(3); assert_equal([ ],a)
198
- a=['a','b','c']; a.cdr!(4); assert_equal([ ],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=['a','b','c']; a.rest!; assert_equal([ 'b','c'],a)
219
- a=['a','b','c']; a.rest!(0); assert_equal(['a','b','c'],a)
220
- a=['a','b','c']; a.rest!(1); assert_equal([ 'b','c'],a)
221
- a=['a','b','c']; a.rest!(2); assert_equal([ 'c'],a)
222
- a=['a','b','c']; a.rest!(3); assert_equal([ ],a)
223
- a=['a','b','c']; a.rest!(4); assert_equal([ ],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=['a','b','c']
243
- assert_equal('a',a.car)
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 test_to_tsv
260
- a=[["a", "b"], ["c", "d"], ["e", "f"]]
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 test_to_tsv_with_empty
265
- assert_equal("",[].to_tsv)
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
- # alias: test_to_tdf must be identical to test_to_tsv
269
- def test_to_tdf
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
- # alias: test_to_tdf must be identical to test_to_tsv
275
- def test_to_tdf_with_empty
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.2.7
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
- 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
- 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
- c2NvMQ8wDQYDVQQKEwZTaXhBcm0xEzARBgNVBAMTCnNpeGFybS5jb20wHhcNMTUw
16
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- ijCBh4AUHnpLsysq561sVXhWi+3NoSb9n96hZKRiMGAxCzAJBgNVBAYTAlVTMRMw
32
- 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
- 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
- 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
- qP2Kvj9J6tqugO+cuUF2S/ro4gdEQhl7Gv6+DCWHd0FQWJBSXMsZ9a6RhFGAcE5C
36
- egK706Gh40yNeobd1aoUh+Pn17kYH2WSBRC+KsIvhZaAnra/1JPZItoge64GS+lM
37
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
45
- n+ES/gQPOnvmVkLDGw==
13
+ MIIFPDCCAyQCCQDx7Y5LWGuPPzANBgkqhkiG9w0BAQsFADBgMQswCQYDVQQGEwJV
14
+ UzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEP
15
+ MA0GA1UECgwGU2l4QXJtMRMwEQYDVQQDDApzaXhhcm0uY29tMB4XDTE4MDExMzIy
16
+ NDYyM1oXDTIwMTAwOTIyNDYyM1owYDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCkNh
17
+ bGlmb3JuaWExFjAUBgNVBAcMDVNhbiBGcmFuY2lzY28xDzANBgNVBAoMBlNpeEFy
18
+ bTETMBEGA1UEAwwKc2l4YXJtLmNvbTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCC
19
+ AgoCggIBAMMPPjYWd77gRmOEkMb+1H9+ckIHlA325OkES2g5Y58hIDzZYTGIxjSP
20
+ 3N7uYx5qR8qZvuO4F1McGJ/NES2robjQcV/aIRXD+5RjbokyYYGJlJujm5c/wZme
21
+ Us7pOzQxc8QcogsdInwQ6O9hTQ4zBdOFZt6YBp5y9ycXVIApBnxJHBU3W6Ir1hl6
22
+ 3v6RYBgHFd3g0dCwuBoaYZE5MU/4q91vc48XhioqXdJlaDyw1ZMyvE+loi+8quVg
23
+ bpUadC/QUZukABYCu6rS6fiRLffmMy/Db7d8b1fP+J1i4bL5atF4xz8c1BDwc2x1
24
+ mXJDUBznMSDpmjAkUwDjh+330tYT/VTioqobCMSLfwgJI2Uqrr8H8N9yeSsOMAup
25
+ nJKnJHXeZPEGAr2LBCcok2KUcdugdYq/0C+ec1bU8BHDDoEOM54rhPKKmCJentO6
26
+ KJRoJfu0ovQj1/BvSksUUWdvhy6jzXviyQq44GKEwsJix6sdNKEpndVDQGOvHPg5
27
+ gcakte7KrpK2Udwy+dK+caHJWXOouHPPFfdZWr5U9DkNjtvvQrwQUsMxECoByKYA
28
+ 7wmX3SwzodtuzAPGzxuwkqwy1RtHAfbrFINFBxP35G/f16x2mtwEpqsdS4LE+c0C
29
+ l3eEQ8xIv3ijKUZek87Uxk7/JH76C3/9tSQeFkt0NkEduHOR1H7RAgMBAAEwDQYJ
30
+ KoZIhvcNAQELBQADggIBALIBNN7zUhFldUaXWGwv6032ZwM2Sm1U8VF8YaH71NLg
31
+ FhlcuJ0JLkGlxT0/68acS0EwoqOEgaHyPx8eodjyDv2MuJlWJGXIgHgLD66Tu0VA
32
+ Wt1sgA823Rl35WVSMqiyoxwsrGFwMtayNrrlpdhB8Ny8CMA2NfKyEJkh4+xlE72a
33
+ D8Eu8NFr9Tt5lHWXdZBI5BhzhQxPPxeIuw0wZ3+kiwxRie7K4XhKsOIrPmu2i6QV
34
+ Yl/663wZgWpqrroSnc3PE3lsuTW7quUvayjtqMTU2qrh7i21oB+/Nn+I6gcxYJZb
35
+ UlK+tvsqoM94U6sFTjw9mDt62MLQGrJtHShS+ZZiGmWj1sKreuwGJnCVDoBk15xa
36
+ oqlvfvLAMBCqlfrHhvGUfbIMgzb9uXNmCjzYMsQxuIgF6IMis6Kq02NBAR91HPMe
37
+ 2RoY7CdBHMxW+O0tgS2xoQbOwb+ti1j4MbsWpCqS9Mteck0Z7jZpRRrUDjXU+/7Z
38
+ RmW9HX0oLIoCBDChCcEKG0Ma4IvHUgjv47f5iYpkXuhifiK4xMG/s+T5Euw3Wg9J
39
+ tzpk/VnZXj7Ek/earx+N/Z+Wtnl2xENm5IF8SFPeI1HFa9NH47pqtxF1YKpNIEVc
40
+ 2xa2BNHSePe7tys/2hbmZuyMu8X5ERmovsabSXB3a+YwtJh5c2jhA21wF7986s0q
46
41
  -----END CERTIFICATE-----
47
- date: 2017-08-14 00:00:00.000000000 Z
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.7.0
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.7.0
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: 10.4.2
150
+ version: 12.3.1
156
151
  - - "<"
157
152
  - !ruby/object:Gem::Version
158
- version: '11'
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: 10.4.2
160
+ version: 12.3.1
166
161
  - - "<"
167
162
  - !ruby/object:Gem::Version
168
- version: '11'
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.10.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.10.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: coveralls
185
+ name: flog
191
186
  requirement: !ruby/object:Gem::Requirement
192
187
  requirements:
193
188
  - - ">="
194
189
  - !ruby/object:Gem::Version
195
- version: 0.8.2
190
+ version: 4.6.2
196
191
  - - "<"
197
192
  - !ruby/object:Gem::Version
198
- version: '2'
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: 0.8.2
200
+ version: 4.6.2
206
201
  - - "<"
207
202
  - !ruby/object:Gem::Version
208
- version: '2'
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: '0'
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.6.12
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