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.
- checksums.yaml +4 -4
- data/README.md +13 -0
- data/lib/bonito/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad14b0089101a7aa1414923aad6b79062c13ebed2865e911cee2790acc3941a1
|
|
4
|
+
data.tar.gz: ec1fcb6d8b1def6c6a239932948c92620b9295a02a8a518136e10a6497bb6f4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/bonito/version.rb
CHANGED