# Boolio A Ruby interface to the [booleans.io](https://booleans.io) API. ## Installation Add this line to your application's Gemfile: ```ruby gem 'boolio' ``` Or install it yourself as: $ gem install boolio ## Usage Creating a Boolio instance hits the booleans.io API to create a corresponding boolean: ```ruby bool = Boolio.new val: true # => # ``` Instantiating without a `val` argument will generate a random boolean value. This instance can now be used to interact your booleans. For example, to update your boolean's value, the API's `PUT` endpoint can be triggered by calling `#update`: ```ruby bool.val = false bool.update ``` Or, ```ruby bool.update false ``` Already have an ID? Retrieving your booleans is simple: ```ruby bool = Boolio.fetch("5b4851a0-0883-4cef-8651-59b2daf053da") # => # ``` Invoking `#destroy!` removes your boolean from the booleans.io server, nullifies the instance's attributes, and freezes the instance: ```ruby bool = Boolio.new val: false # => # bool.destroy! # => # ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).