Sha256: 48e8e2849f1bb242d44b17a0552b69a80b99528ab7b0906ce1defce33d58bf3e
Contents?: true
Size: 705 Bytes
Versions: 1
Compression:
Stored size: 705 Bytes
Contents
# exists [![[version]](https://badge.fury.io/rb/exists.svg)](http://badge.fury.io/rb/exists) [![[travis]](https://travis-ci.org/janlelis/exists.png)](https://travis-ci.org/janlelis/exists) Like ActiveSupport's presence, but for [Object#null?](https://github.com/janlelis/null_question) For example, this is useful when setting defaults via or: `object.exists || other_object` ## Setup Add to your **Gemfile**: ```ruby gem 'exists' ``` ## Usage ```ruby class NullObject def null? true end end nil.exists #=> nil NullObject.new.exists #=> nil "some object".exists #=> "some object" ``` ## MIT License Copyright (C) 2015 Jan Lelis <http://janlelis.com>. Released under the MIT license.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
exists-1.0.0 | README.md |