lazy_load 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. data/lib/lazy_load.rb +2 -2
  2. metadata +2 -3
  3. data/CHANGELOG +0 -24
@@ -3,7 +3,7 @@
3
3
 
4
4
  module LazyLoad
5
5
 
6
- VERSION = '0.1.2'
6
+ VERSION = '0.1.3'
7
7
 
8
8
  module Mixin
9
9
 
@@ -100,7 +100,7 @@ module LazyLoad
100
100
 
101
101
  extend Mixin
102
102
 
103
- def self.new(*prms) self.scope(*prms); end
103
+ def self.new(*prms, &blk) self.scope(*prms, &blk); end
104
104
 
105
105
  end
106
106
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 2
9
- version: 0.1.2
8
+ - 3
9
+ version: 0.1.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jostein Berre Eliassen
@@ -32,7 +32,6 @@ extra_rdoc_files: []
32
32
 
33
33
  files:
34
34
  - .gitignore
35
- - CHANGELOG
36
35
  - LICENSE
37
36
  - README.md
38
37
  - Rakefile
data/CHANGELOG DELETED
@@ -1,24 +0,0 @@
1
-
2
- HEAD
3
-
4
- 0.1.2
5
- various aliases, namespace fix
6
-
7
- 0.1.1
8
- show install gem suggestion when used like autoload
9
-
10
- 0.1.0
11
- deprecate custom msgs and errors
12
- let LoadErrors pass
13
- deprecate #map
14
- alias #dep to #const
15
- LazyLoad::Mixin
16
- wrapper support
17
-
18
- 0.0.3
19
- alias #map to #dep
20
- # group method
21
-
22
-
23
- 0.0.2
24
- Initial version