array_groups 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75fabfd8b73f649b57196dac94708a7dd0a2d9cf031292602020999b79099851
|
4
|
+
data.tar.gz: 8288f6342b8c6f227722c493a79bb3ba39d8e72efeb202e6c5e3d8430f389116
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 142aea96e674c3dbea8573fa7a2007288841e2fbb15c43af656362ba0d78d48aadcdd6e43c3df2a1e9168b0ed61a1a48a045d7d37bb244e1302b257737d006a8
|
7
|
+
data.tar.gz: f08a2c9b25c35509b7cde121802d3a7647e791e9fc3b636173e0d9b1223d042c3183e9319fa0a4226c787c5d9a1749b848357d417e70d0d5d80e9cfce1cecb5c
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: array_groups
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin Zagorski
|
@@ -16,6 +16,9 @@ description: |2
|
|
16
16
|
[1,2,3,4,5].in_groups_of(2) => [ [1,2], [3,4], [5] ]
|
17
17
|
-------------------------------------------------------
|
18
18
|
[1,2,3,4,5].in_groups_of(2, nil_fill: true) => [ [1,2], [3,4], [5,nil] ]
|
19
|
+
-------------------------------------------------------
|
20
|
+
|
21
|
+
This allows the grouping of an array into different "parts". Great for threading long arrays or making them rectanglar.
|
19
22
|
email: benj@zagorski.com
|
20
23
|
executables: []
|
21
24
|
extensions: []
|
@@ -43,5 +46,6 @@ requirements: []
|
|
43
46
|
rubygems_version: 3.0.2
|
44
47
|
signing_key:
|
45
48
|
specification_version: 4
|
46
|
-
summary: 'Adds #in_groups and #in_groups_of to a basic Array
|
49
|
+
summary: 'Adds #in_groups and #in_groups_of to a basic Array, allowing the grouping
|
50
|
+
of the array into groups'
|
47
51
|
test_files: []
|