italian-ruby 1.5.4 → 1.5.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1550fed9fa5d8627a12423a83717323320906d71af217af9971b1dc17d0ad4d
4
- data.tar.gz: 985f523686345ec7362b1e06181276da70c6d1fba9f026b36d11d9d8fd23d4b4
3
+ metadata.gz: e04b3b680bcea9d302c93c4df7218c8d5d8cd89eb198fd47e0bb50af264568c9
4
+ data.tar.gz: 6fe2685b8054b366735d9c85bb7d79b84685c6be8f8a734310da6be759edc8c8
5
5
  SHA512:
6
- metadata.gz: 76f69ca7661e93da77319403fe443fe8d9abee62a797bc09bee70db8f474c317a418f4228639f2598e353ccab32d363a3f86c5d5d2ce3b1e44f2b365520b098e
7
- data.tar.gz: 4b35ab2ba0a2abd0be8b784f2000e4652e6ddf598705cb38c4d5531fc349f7dd034ad6e1c34464605be7e8245a75f08a50b72ad9ab2e51d30814f97751eb6054
6
+ metadata.gz: ac77f570c2fcc906d1be6a7726f477c5be1740682789bcc8ca6c4a638ea5bb0f42aa95b87667b8825256d21392b5ac9208a0bbdb645c548fa3a12faeced3dde7
7
+ data.tar.gz: ebcf8ee34557beac8c9fc4cf06626c13bb1beb12cd3ba225d1a6071a743f6affdce68fcba4ccfcad2c094547351c85320747874403d30958713440652366c8ab
@@ -7,9 +7,15 @@ class Array
7
7
  alias :per_ognuno :each
8
8
  alias :per_ognuna :each
9
9
  alias :in_fette_da :each_slice
10
+ alias :a_fette_da :each_slice
10
11
  alias :in_gruppi_da :each_slice
11
- alias :mappa :map
12
- alias :mappa! :map!
12
+ alias :a_gruppi_da :each_slice
13
+ alias :in_pacchetti_da :each_slice
14
+ alias :a_pacchetti_da :each_slice
15
+ alias :trasforma :map
16
+ alias :trasforma! :map!
17
+ alias :restituisci :map
18
+ alias :restituisci! :map!
13
19
  alias :vuoto? :empty?
14
20
  alias :vuota? :empty?
15
21
  alias :primo :first
@@ -2,7 +2,7 @@
2
2
 
3
3
  class Enumerator
4
4
 
5
- alias :mappa :map
5
+ alias :restituisci :map
6
6
  alias :per_ognuno :each
7
7
  alias :per_ognuna :each
8
8
  alias :lista :to_a
@@ -15,40 +15,46 @@ class Array
15
15
  end
16
16
 
17
17
  ##
18
- # Divide la lista in 100 pacchetti in modo che ogni pacchetto abbia
19
- # lo stesso numero di elementi.
20
- def in_pacchetti_percentuali
18
+ # Divide la lista in n pacchetti in modo che ogni pacchetto abbia
19
+ # circa lo stesso numero di elementi.
20
+ def in_pacchetti_equi da: 25
21
21
  conteggio = self.count
22
22
 
23
- if conteggio < 100
24
- avanzamento = 100.0 / conteggio
23
+ if conteggio < da
24
+ avanzamento = da.in_decimale / conteggio
25
25
  indice = 0
26
26
 
27
27
  self.each.with_index do |elemento, indice_elemento|
28
28
  pacchetto = [ elemento ]
29
29
  indice += avanzamento
30
- indice = 100 if indice_elemento == conteggio - 1
31
- yield pacchetto, indice.round, 100 if block_given?
30
+ indice = da if indice_elemento == conteggio - 1
31
+ yield pacchetto, indice_elemento, conteggio if block_given?
32
32
  end
33
33
  else
34
- avanzamento = conteggio / 100.0
34
+ avanzamento = conteggio / da.in_decimale
35
35
  elementi_presi = 0
36
- percentile = 0
36
+ contatore = 0
37
37
  indice = 0
38
38
 
39
- while percentile < 100
39
+ while contatore < da
40
40
  elementi_da_prendere = (indice + avanzamento).round - 1
41
41
  pacchetto = self[elementi_presi..elementi_da_prendere]
42
42
  elementi_presi = elementi_da_prendere + 1
43
43
  indice += avanzamento
44
- percentile += 1
45
- yield pacchetto, percentile, 100 if block_given?
44
+ contatore += 1
45
+ yield pacchetto, elementi_presi, conteggio if block_given?
46
46
  end
47
47
  end
48
48
 
49
49
  self
50
50
  end
51
51
 
52
+ ##
53
+ # Pacchetti equi da 100.
54
+ def in_pacchetti_percentuali &blocco
55
+ in_pacchetti_equi da: 100, &blocco
56
+ end
57
+
52
58
  ##
53
59
  # Esegue i metodi specificati per ogni elemento della lista.
54
60
  def campiona(*method_names)
@@ -1,5 +1,5 @@
1
1
  module Italian
2
2
  module Ruby
3
- VERSIONE = "1.5.4"
3
+ VERSIONE = "1.5.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: italian-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.4
4
+ version: 1.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco Ballardin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-28 00:00:00.000000000 Z
11
+ date: 2022-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler