Sha256: 246e86fa75c2eb5dc62fe95d3e83e5deec7baee2af26ffc0846b4cf4aaa2c262

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

<p align="center">
  <img src="https://raw.githubusercontent.com/avinashbot/lazy_lazer/master/logo.png" width="500">
</p>

```ruby
require 'lazy_lazer'

class User
  include LazyLazer

  property :id, :identity, :required
  property :email, default: 'unknown@example.com'
  property :created_at, from: :creation_time_utc, with: ->(t) { Time.at(t) }
  property :age, with: :to_i
  property :twitter_handle, :nil
  property :favorite_ice_cream

  def lazer_reload
    fully_loaded! # mark model as fully updated
    { favorite_ice_cream: %w[vanilla strawberry chocolate].sample }
  end
end

user = User.new(id: 152, creation_time_utc: 1500000000, age: '21')

user.id             #=> 152
user.email          #=> "unknown@example.com"
user.created_at     #=> 2017-07-14 03:40:00 +0100
user.age            #=> 21
user.twitter_handle #=> nil

user.favorite_ice_cream         #=> "chocolate"
user.favorite_ice_cream         #=> "chocolate"
user.reload.favorite_ice_cream  #=> "vanilla"
```

<p align="center">
<a href="http://www.rubydoc.info/github/avinashbot/lazy_lazer/master">documentation</a> -
<a href="https://github.com/avinashbot/lazy_lazer/blob/master/CONTRIBUTING.md">contributing</a> -
<a href="https://github.com/avinashbot/lazy_lazer/blob/master/LICENSE.txt">mit licensed</a>
<br>
created for <a href="https://github.com/avinashbot/redd">redd</a> -
logo font is <a href="https://www.behance.net/gallery/3588289/Zaguatica">zaguatica</a>
</p>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lazy_lazer-0.7.0 README.md
lazy_lazer-0.6.0 README.md
lazy_lazer-0.5.4 README.md
lazy_lazer-0.5.3 README.md