bonito 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -0
  3. data/lib/bonito/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 599d257d6b113cc345ae71a20bb2a00be5bfba1639f647b597a0c98d6cf37df5
4
- data.tar.gz: ee359e2a42753140a5b23a864764fe798110f3761a492335d64d2d24b4b8fad5
3
+ metadata.gz: ad14b0089101a7aa1414923aad6b79062c13ebed2865e911cee2790acc3941a1
4
+ data.tar.gz: ec1fcb6d8b1def6c6a239932948c92620b9295a02a8a518136e10a6497bb6f4d
5
5
  SHA512:
6
- metadata.gz: 9b560ad80a6bc02d69e14a171be711ba6d5599c774b9e85f920d8b9ecc760128f9732227e22ba2c17d01eb69c04e5667a92934a37847777a3605e2675c74e512
7
- data.tar.gz: 43ca1a80a0d874de18060eff0ef45dd06c009ded65f6305fa61560ac6715288927f4c8e459ef1717ee561ac3503368fa55a97f7d883da1c8af59872fc15cb50c
6
+ metadata.gz: 8309b6a08cb8f71b7813eeb0c29fcb6d0e5c5594df2c494100aa4bf931b37f22a07f031ff387bf8db2932c41afde3a975913e2b26fb434890528096241d699cb
7
+ data.tar.gz: f53472674c2fe80889d30bd21e4773ed07bd215deea66d9ef445bfd2a1a280b8c59cca489cf4eab1c811209ccee27d8ad713bc1e44395c2cd59eade77870c172
data/README.md CHANGED
@@ -11,6 +11,19 @@ _`Bonito` is a ruby DSL for generating canned data where timing is important._
11
11
  `Bonito` uses [Timecop](https://github.com/travisjeffery/timecop) to simulate
12
12
  the flow of time as it generates data.
13
13
 
14
+ ## Installation
15
+ ```
16
+ gem install bonito
17
+ ```
18
+ or, if using [Bundler](https://bundler.io/)
19
+ ```ruby
20
+ gem 'bonito', '~> 0.2.1'
21
+ ```
22
+
23
+ ```ruby
24
+ require 'bonito'
25
+ ```
26
+
14
27
  ## Introduction
15
28
 
16
29
  At the core of `Bonito` is the concept of a _timeline_. A timeline is a sort
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bonito
4
- VERSION = '0.2.0'.freeze
4
+ VERSION = '0.2.1'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bonito
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Finill