-
Notifications
You must be signed in to change notification settings - Fork 1
Easily find out the truthiness of any Ruby object.
License
ymendel/truthy
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
= truthy == DESCRIPTION: This gem is to make it easier to discover the truth values of various Ruby objects. Ask any object if it is truthy, and it will tell you. == SYNOPSIS: require 'truthy' true.truthy? # => true false.truthy? # => false nil.truthy? # => false [].truthy? # => true [nil].truthy? # => true %w[one two three].truthy? # => true {}.truthy? # => true { 'one' => 1 }.truthy? # => true ''.truthy? # => true ' '.truthy? # => true 'hello'.truthy? # => true The possibilities are endless. == INSTALL: * sudo gem install truthy
About
Easily find out the truthiness of any Ruby object.
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published