# Binary Very simple gem to convert an integer into a binary representation ## Installation Add this line to your application's Gemfile: ```ruby gem 'binary' ``` And then execute: $ bundle Or install it yourself as: $ gem install binary ## Usage Simply require the gem in your code: ```ruby require 'binary' ``` Then to get the binary representation of a number, you just need to call `Binary.binary` and pass the number to it, something like follows: ```ruby Binary.binary(2018) ``` Output: `"11111100010"`. Also you can pass an array of integers to the method to get an array of their binary values. ```ruby Binary.binary([26,6,1991]) ``` Output: `["11010", "110", "11111000111"]`. ## Development ... ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/almishkawi/binary. ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).