Randomiser
Randomiser helps you in generating a random string like - [only alphabets/ alphanumeric/ with time].
The default string length generated is 10. The desired count can be passed as an argument for the related methods
Generating a string with time, may be useful in scenarios like generating a random string and should be unique at all timehe related methods
##Supports
ruby >= 1.9.x
Installation
Add this line to your application's Gemfile:
gem 'randomiser'And then execute:
$ bundle
Or install it yourself as:
$ gem install randomiser
Usage
Randomiser::GenerateRandomString.alphabetsOnly
Randomiser::GenerateRandomString.alphaNumeric
Randomiser::GenerateRandomString.with_time("alphaNumeric", count)
Randomiser::GenerateRandomString.with_time("alphabetsOnly", count)
Note: Charecter count is optional. Default string length is 10, and 20 (with time)
Author
karthik D S https://github.com/Karthikds
Contributing
- Fork it ( https://github.com/[my-github-username]/randomiser/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
##License
Randomiser is released under the MIT License.