Antigate.com ruby api wrapper
Add this line to your application's Gemfile:
gem 'antigate_rb'
And then execute:
$ bundle
Or install it yourself as:
$ gem install antigate_rb
Configure with api params
AntigateRb.configure do |config|
config.key = 'api_key'
config.min_len = 6
config.max_len = 10
end
@client = AntigateRb::Client.new(retries_count: 5, phrase: 1)
code = @client.decode(image_content)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request