draw_smd 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/draw_smd/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b039268f8de5094243b1641a7c328d0699c4a0b
|
4
|
+
data.tar.gz: 3beef471485ba6d29d0c1e1a2b5ce60da211dca0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a2e9306a78294046cc7021e4e787049dcd79f1c0d2e8479458fa1a635cc137b3c52187bf0fdc8d7e960533cb4307399b350be77c93979c476c3de73ecf3ce10
|
7
|
+
data.tar.gz: f62057ab6bb4996f9a566d99852794b6b1eefb7312d603451284378c86a5d9b9a4263fdf82ad838794eca70a367bf4317d258601bb31231be73feb9e21cdf42b
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/draw_smd.png)](https://rubygems.org/gems/draw_smd) [![Build Status](https://travis-ci.org/ogom/draw_smd.png?branch=master)](https://travis-ci.org/ogom/draw_smd)
|
4
4
|
|
5
|
-
Drawing the
|
5
|
+
Drawing the State Machine Diagram of Rails.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -23,10 +23,10 @@ $ bundle
|
|
23
23
|
Add this line to your `config/routes.rb`:
|
24
24
|
|
25
25
|
```
|
26
|
-
mount
|
26
|
+
mount DrawSmd::Engine, at: '/rails/draw/smd'
|
27
27
|
```
|
28
28
|
|
29
|
-
Draw by selecting the
|
29
|
+
Draw by selecting the schema:
|
30
30
|
|
31
31
|
![example_smd](http://ogom.github.io/draw_smd/assets/img/example_smd.png)
|
32
32
|
|
data/lib/draw_smd/version.rb
CHANGED