Realization of old HTTP API provided by the random.org service.
Not to confuse to new JSON-RPC API which now is in beta release.
At present realized:
- numbers generation
- strings generation
- sequence generation
Add this line to your application's Gemfile:
gem 'random_org_http_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install random_org_http_api
require 'random_org_http_api'
g = RandomOrgHttpApi::Generator.new
g.generate_integers(num: 4, max: 100)
=> ["10", "23", "42", "28"]
g.generate_strings(min: 1, max: 10, num: 3, len: 5)
=> ["XxH06", "3UHOu", "Asjd0"]
g.generate_sequence(num: 5, len: 10, max: 10)
=> ["8", "9", "10", "3", "2", "7", "1", "5", "4", "6"]
Check your quota
g.quota
=> ["1000000"]
More information about quota here
:min
:col
:base
:format
:rnd
:col
:format
:rnd
:digits
:upperalpha
:loweralpha
:unique
:format
:rnd
More information about available parameters on http://www.random.org/clients/http/
- Fork it ( https://github.com/istickz/random_org_http_api/fork )
- 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 a new Pull Request