Project

to-bool

0.03
No commit activity in last 3 years
No release in over 3 years
This gem convert 'true' and 'false' from string class to collectively TrueClass and FalseClass.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.10
~> 10.0
>= 0
 Project Readme

Build Status

to-bool

This gem convert 'true' and 'false' from string class to collectively TrueClass and FalseClass.

How to Install

gem install to-bool

Usage

Success case

You can convert by 'to_bool' method.

'true'.to_bool => TrueClass
'false'.to_bool => FalseClass

In case of already Boolean Type, this method return as it is.

true.to_bool => TrueClass
false.to_bool => FalseClass

Error Case

  • This gems sendback Error for other Object without True/False/String.
  • This gems sendback Error for irregular string type(not equal 'true' or 'false')
'truetrue'.to_bool => ArgumentError
''.to_bool => ArgumentError
nil.to_bool => NoMethodError

Contributing

If you would like to contribute, please...

  1. Fork.
  2. Make changes in a branch & add unit tests.
  3. Run Unit Test
rspec spec/to_bool_spec.rb
  1. Create a pull request.

Contributions, improvements, comments and suggestions are welcome!

License

The gem is available as open source under the terms of the MIT License.