enumerator-auto_forced_lazy 0.1.0 → 0.1.1

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: c3704643ea64116858cc2e47992b7a3f1f4b0a16217f03a35ce19f441435d5ad
4
- data.tar.gz: b968ca193cc565813bdf7ee38cc94389617bd5d4cb153bc5a9fe985867891df8
3
+ metadata.gz: e0e27dfc44bbdb10e3665ac49dcb0239f89d609dc6a28d9536a5c10bea33ab0f
4
+ data.tar.gz: d5258f02a79a7e8168082bf41e95eab4e3cd706325526fb787dcae4f274813e7
5
5
  SHA512:
6
- metadata.gz: fc4b1c3971e1aa262870cafa823e6e139a4eccb1aa3fc826f587e2ce6c325ca5abb7423f6db2e495a47d2a3ebe0df2123a25a68ea55272b0ddf188c5c5d07124
7
- data.tar.gz: 6378d0806fdc0413e9dac3a15a9bef0a9a6c10af2032c19eab126224cdb770936187e2221abce6a4fa520b84b4ba2a735739a9246d4bf1f9cb4b546a34511482
6
+ metadata.gz: 6cfa5e0dddfee51126a198ba92d4b9c2f58744ee3a41d81cc49265224530115f679baf5550453d7a5b7239c1718efbcff86a8af813434b048635615a562b51c9
7
+ data.tar.gz: 05bc294fe38e6adf29d216de6762b3a2f4732dff0248a492b924949760e256423bf7b51e347c859e0d89a2a2bea81796479530a601845fe5bf24f4de1483790d
@@ -4,7 +4,7 @@ $:.push File.expand_path("../lib", __FILE__)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "enumerator-auto_forced_lazy"
7
- spec.version = "0.1.0"
7
+ spec.version = "0.1.1"
8
8
  spec.platform = Gem::Platform::RUBY
9
9
  spec.authors = ["Gonçalo Cabrita"]
10
10
  spec.email = "_@gmcabrita.com"
data/lib/enumerator.rb CHANGED
@@ -14,7 +14,7 @@ class Enumerator
14
14
  # => #<Enumerator::Lazy: #<Enumerator::Lazy: 1..Infinity>:take_while>
15
15
  #
16
16
  # Alternatively, Enumerator::AutoForcedLazy can also be constructed from any
17
- # and from any Enumerable with the Enumerable#auto_forced_lazy method.
17
+ # and from any Enumerable with the Enumerable#auto_forced_lazy method.
18
18
  #
19
19
  # (1..Float::INFINITY).auto_forced_lazy.take_while { |i| i < 30 }
20
20
  # => #<Enumerator::Lazy: #<Enumerator::Lazy: 1..Infinity>:take_while>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enumerator-auto_forced_lazy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gonçalo Cabrita