Project

lazy_const

0.0
No commit activity in last 3 years
No release in over 3 years
Allows you to define lazy evaluated, constant-like instances of your class.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.8.4
>= 0
~> 3.12
 Project Readme

lazy_const¶ ↑

<img src=“https://travis-ci.org/rmg/lazy_const.png?branch=master” alt=“Build Status” />

A simple way of defining lazy evaluated, const-like instances of a class.

Thanks to Travis-CI, tested on:

- "1.8.7"
- "1.9.2"
- "1.9.3"
- "2.0.0"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode

Installation¶ ↑

gem 'lazy_const'

Example¶ ↑

Basic Usage¶ ↑

class Group
  extend LazyConst
  lazy_const :EVERYONE do
    new("Everyone")
  end
  def initialize(name)
    @name = name
    @members = []
  end
  def add_user(user)
    @members << user
  end
end

class User; end

class Registrar
  def new_user(name)
    user = User.new(name)
    Group.EVERYONE.add_user(user)
    user
  end
end

Testing with RSpec¶ ↑

spec/spec_helper.rb:

require 'lazy_const/spec'

lib/some_class.rb:

class SomeClass
  extend LazyConst
  lazy_const :IMPORTANT_INSTACE do
    new(:hotness)
  end
end

spec/some_spec.rb:

describe MyClass do
  defines_const :IMPORTANT_INSTANCE
  # ...
end

Contributing to lazy_const¶ ↑

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet.

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it.

  • Fork the project.

  • Start a feature/bugfix branch.

  • Commit and push until you are happy with your contribution.

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright © 2013 Ryan Graham. See LICENSE.txt for further details. (TL;DR: MIT license)