RandomOrgHttpApi

Gem Version Code Climate Coverage Status

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

Installation

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

Usage

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

More available parameters for generate_* methods

generate_integers

:min
:col
:base
:format
:rnd

generate_sequence

:col
:format
:rnd

generate_strings

:digits
:upperalpha
:loweralpha
:unique
:format
:rnd

More information about available parameters on http://www.random.org/clients/http/

Contributing

  1. Fork it ( https://github.com/istickz/random_org_http_api/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request