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.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +6 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: daaf28ad19bcc6889034006b404588f944c2bad98a8fafd08d6361a27bbe68aa
4
- data.tar.gz: 88171184979786b332d6247a59d0b64509f4ba72a1822c88f3415f3543c8f42a
3
+ metadata.gz: 75fabfd8b73f649b57196dac94708a7dd0a2d9cf031292602020999b79099851
4
+ data.tar.gz: 8288f6342b8c6f227722c493a79bb3ba39d8e72efeb202e6c5e3d8430f389116
5
5
  SHA512:
6
- metadata.gz: 3aacfe6ef6be21a88c773bf251efde51fbd59513513efb3346e69e20aa5f1ff3a1bbb86a56e689d0c021cb15bcde660e913706fd4752ff4de3a62e26b602140a
7
- data.tar.gz: 6c2437fedb686e519002c607c6454d28cbad49c000f9a25bc3c02e117a77c1f4650a3b82f7733f2be2508df77c716b3b9d690ee1a67d70eefcb99bac1cf3d5cf
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.6
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: []