array_op_custom 0.1.6 → 0.1.7
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -4
- data/array_op_custom.gemspec +1 -1
- data/lib/array_op_custom.rb +0 -3
- data/lib/array_op_custom/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32014c62cf164c033eb5d8cecffdc38fb8156e7628fe70272c5cbded88fc7fed
|
4
|
+
data.tar.gz: 0d7f41f3de324c5a7c72e2adaa5c8bb2057c7b8a2c01a06118b955c0c7f90593
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 495a34f0327e0684598f25cfed72701eb057651530aca3d451ef4b75eb5d1a49f0df0af3546bae95f16df96334bae9ec94e75f1997f30f087cec0c1469b27988
|
7
|
+
data.tar.gz: ae0920b11648bfd1a142ad0c114c273d8494cf2e484ba0b6ef0ddde47b5fb077bae2307e68ff0c22d3f683fa5f521e073c57d7082365c6e98c934fa5a102f2ab
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# ArrayOpCustom
|
2
2
|
|
3
3
|
This gem is change operator operation about Array.
|
4
|
-
And add method to_s, to_i
|
4
|
+
And add method to_s, to_i and to_h.
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
|
@@ -52,9 +52,6 @@ require 'array_op_custom'
|
|
52
52
|
[1, 2, 3].to_s
|
53
53
|
#=> ["1", "2", "3"]
|
54
54
|
|
55
|
-
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10].sum
|
56
|
-
#=> 55
|
57
|
-
|
58
55
|
["1", "2", "3"].to_i
|
59
56
|
#=> [1, 2, 3]
|
60
57
|
|
data/array_op_custom.gemspec
CHANGED
data/lib/array_op_custom.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: array_op_custom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- k-kyg
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -56,7 +56,7 @@ description: |
|
|
56
56
|
Custom array's operator
|
57
57
|
"+", "-" and "*".
|
58
58
|
add method
|
59
|
-
to_s, to_i, to_h
|
59
|
+
to_s, to_i, to_h
|
60
60
|
email:
|
61
61
|
- ''
|
62
62
|
executables: []
|