README.md in rantly-1.2.0 vs README.md in rantly-2.0.0

- old
+ new

@@ -1,23 +1,30 @@ [![Gem version](https://badge.fury.io/rb/rantly.svg)](https://badge.fury.io/rb/rantly) [![Build Status](https://travis-ci.org/rantly-rb/rantly.svg?branch=master)](https://travis-ci.org/rantly-rb/rantly) +[![Coverage Status](https://coveralls.io/repos/github/rantly-rb/rantly/badge.svg?branch=master)](https://coveralls.io/github/rantly-rb/rantly?branch=master) # Imperative Random Data Generator and Quickcheck You can use Rantly to generate random test data, and use its Test::Unit extension for property-based testing. Rantly is basically a recursive descent interpreter, each of its method returns a random value of some type (string, integer, float, etc.). Its implementation has no alien mathematics inside. Completely side-effect-free-free. +![img](/logo/Rantly.png) + # Install +Rantly requires Ruby 2.4 or higher. To install Rantly add it to your Gemfile or run: + ```ruby $ gem install rantly ``` +You can try it in the console by running: + ```ruby $ irb -rrantly > Rantly { [integer,float] } # same as Rantly.value { integer } => [20991307, 0.025756845811823] > Rantly { [integer,float]} @@ -399,10 +406,12 @@ # Contributors Thanks to [all contributors](https://github.com/rantly-rb/rantly/graphs/contributors). :cupid: New contributors are welcome! :wink: +[Logotype](/logo) designed by: [@Richardbmx](https://github.com/richardbmx) + # License -Code published under MIT License, Copyright (c) 2009 Howard Yeh. See [LICENSE](https://github.com/abargnesi/rantly/LICENSE). +Code published under MIT License, Copyright (c) 2009 Howard Yeh. See [LICENSE](/LICENSE).