draw_erd 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e27dc89a22b90611d8efe88784182f5229ec950
4
- data.tar.gz: e377c9c4490311c3756c6faabc0037073d1f33b5
3
+ metadata.gz: 8b7b0c0911557a83879ba6624e66707b617f226d
4
+ data.tar.gz: 29a2c153a62e3e33d3053b1a4b6f037031f2ff9c
5
5
  SHA512:
6
- metadata.gz: 6e7e6a5916cc54f90e216b6b38decc5ec761d13fa140d157b52b7defd7264397e97d501d9cdfc5e9674312c2744279df40ec056042fa61913712c07db95be7d9
7
- data.tar.gz: d3d8b782b676d9f760c4cf5960f15364954014679e2f9c7a2302b65a40b4356cf0ad0502e942df3f1fd9aeae818a2b676e09cb532adeb16aac18b58ae4601772
6
+ metadata.gz: af79685ab5eab53b72f72e09f267ebc632fa7d89f0d8dde5c189bf6c0f0a9f379779d5b1e82ce0fe8c83b5f6ba720644aecdeafc092b6010897a5c349d487f1e
7
+ data.tar.gz: f87a50ce99acfc9da9c65a6df78e952362762b58ab7d0505925faa89ae33ca4cf50248981e9415aed39fadba10fdc4052e3c5f842afe6a7fefc91f6dbaa91dab
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Draw ERD
2
2
 
3
- [![Build Status](https://travis-ci.org/ogom/draw_erd.png?branch=master)](https://travis-ci.org/ogom/draw_erd)
3
+ [![Gem Version](https://badge.fury.io/rb/draw_erd.png)](https://rubygems.org/gems/draw_erd) [![Build Status](https://travis-ci.org/ogom/draw_erd.png?branch=master)](https://travis-ci.org/ogom/draw_erd)
4
4
 
5
5
  Drawing the Entity-Relationship Diagram of Rails.
6
6
 
@@ -26,6 +26,14 @@ Add this line to your config/routes.rb:
26
26
  mount DrawErd::Engine, at: '/rails/info/schemas'
27
27
  ```
28
28
 
29
+ Draw by selecting the schemas:
30
+
31
+ ![example_erd](http://ogom.github.io/draw_erd/assets/img/example_erd.png)
32
+
33
+ ## Use
34
+
35
+ * [Rails ERD](https://github.com/voormedia/rails-erd)
36
+
29
37
  ## License
30
38
 
31
39
  * MIT
data/draw_erd.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["ogom@hotmail.co.jp"]
11
11
  spec.summary = %q{Drawing the Entity-Relationship Diagram.}
12
12
  spec.description = %q{Drawing the Entity-Relationship Diagram of Rails.}
13
- spec.homepage = "https://github.com/ogom/draw_erd"
13
+ spec.homepage = "http://ogom.github.io/draw_erd"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -1,3 +1,3 @@
1
1
  module DrawErd
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: draw_erd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ogom
@@ -79,19 +79,14 @@ files:
79
79
  - LICENSE.txt
80
80
  - README.md
81
81
  - Rakefile
82
- - app/assets/images/draw_erd/.keep
83
82
  - app/assets/javascripts/draw_erd/application.js
84
83
  - app/assets/javascripts/draw_erd/base.js
85
84
  - app/assets/stylesheets/draw_erd/application.css
86
85
  - app/assets/stylesheets/draw_erd/base.css
87
- - app/controllers/.keep
88
86
  - app/controllers/draw_erd/application_controller.rb
89
87
  - app/controllers/draw_erd/diagram_controller.rb
90
- - app/helpers/.keep
91
88
  - app/helpers/draw_erd/application_helper.rb
92
- - app/mailers/.keep
93
89
  - app/models/draw_erd/diagram.rb
94
- - app/views/.keep
95
90
  - app/views/draw_erd/diagram/index.html.erb
96
91
  - app/views/layouts/draw_erd/application.html.erb
97
92
  - config/routes.rb
@@ -143,7 +138,7 @@ files:
143
138
  - spec/lib/version_spec.rb
144
139
  - spec/models/diagram_spec.rb
145
140
  - spec/spec_helper.rb
146
- homepage: https://github.com/ogom/draw_erd
141
+ homepage: http://ogom.github.io/draw_erd
147
142
  licenses:
148
143
  - MIT
149
144
  metadata: {}
File without changes
File without changes
data/app/helpers/.keep DELETED
File without changes
data/app/mailers/.keep DELETED
File without changes
data/app/views/.keep DELETED
File without changes