laissez 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: a6b6bcec2c32b9c71f9b0adea68985e808239223
4
- data.tar.gz: 1aa5e2300539f43568b6561f8a0502211164c21e
3
+ metadata.gz: 50d987711b17e32e61e2c7178207fcef214fd6fe
4
+ data.tar.gz: 00d516c72e1a01724385d4cb61380ee583cd9e35
5
5
  SHA512:
6
- metadata.gz: 4ac86a6a5115f383f1297b1a2256d1ac6f3819051f959e58ae39fa6ce20e346a424cbea3af473d445527f6e629ec1eeb455a9744cd574eaf5696820926fb0e7e
7
- data.tar.gz: 6464e3ce65ec753a2b8614dfaeac439be5fb3d0589d4db0947ea81b7fefd532dcdb7099c3099aeef311e4ca25fb0b356ab940fef0f98578e2c11e66076082939
6
+ metadata.gz: f00fa0225ab38bf4bcad097d712ad7e40993618b4cb97d65965c869539bd0a06da233576d5c83cf4cd297fd06644491ec7052167101853ef0541ac064c124533
7
+ data.tar.gz: 9a466acba1d4a7584bc215ba1083a774f1ee4949bebb119d05f7d2db86e3864cf2c6e9b0adfe4dd30e91d1ad90670690f794229d6492fdba8bb7e03f8fcc254d
data/README.md CHANGED
@@ -1,10 +1,7 @@
1
- # Laissez
1
+ # Laissez [![Build Status](https://travis-ci.org/PrintReleaf/laissez.png?branch=master)](https://travis-ci.org/PrintReleaf/laissez)
2
2
 
3
3
  Lazy accessors, yo.
4
4
 
5
- [![Build Status](https://travis-ci.org/PrintReleaf/laissez.png?branch=master)](https://travis-ci.org/PrintReleaf/laissez)
6
-
7
-
8
5
  Adds `lazy_accessor`, `lazy_reader`, and `lazy_writer` to the Module class. Behaves just like its `attr_*` counterparts, except if the value is a Proc, the return value of calling the proc is returned instead.
9
6
 
10
7
 
@@ -11,7 +11,8 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = "Lazy accessors, yo."
12
12
  spec.description = "Adds `lazy_accessor`, `lazy_reader`, and `lazy_writer` to the Module class.
13
13
  Behaves just like its `attr_*` counterparts, except if the value is a Proc,
14
- the return value of calling the proc is cached and returned instead."
14
+ the return value of calling the proc is returned instead."
15
+
15
16
  spec.homepage = "https://github.com/printreleaf/laissez"
16
17
  spec.license = "MIT"
17
18
 
@@ -1,3 +1,4 @@
1
1
  module Laissez
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
4
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: laissez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Casey O'Hara
@@ -55,7 +55,7 @@ dependencies:
55
55
  description: |-
56
56
  Adds `lazy_accessor`, `lazy_reader`, and `lazy_writer` to the Module class.
57
57
  Behaves just like its `attr_*` counterparts, except if the value is a Proc,
58
- the return value of calling the proc is cached and returned instead.
58
+ the return value of calling the proc is returned instead.
59
59
  email:
60
60
  - cohara@printreleaf.com
61
61
  executables: []