railroad 0.1.2 → 0.2.0
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.
- data/ChangeLog +8 -0
- data/README +20 -10
- data/rake.gemspec +1 -1
- metadata +2 -2
data/ChangeLog
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
Version 0.2.0 (apr 8 2007)
|
|
2
|
+
- Differentiate classes from modules
|
|
3
|
+
- Added "-m" flag for considering modules
|
|
4
|
+
- Draw double-headed arrows for habtm and has_many, :through associations
|
|
5
|
+
- Fix inheritance support for non ActiveRecord::Base classes on model
|
|
6
|
+
diagrams
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
Version 0.1.2 (apr 7 2007)
|
|
2
10
|
- Documentation moved from script header to README
|
|
3
11
|
|
data/README
CHANGED
|
@@ -16,26 +16,36 @@ controller diagrams are best processed using neato.
|
|
|
16
16
|
== Options
|
|
17
17
|
|
|
18
18
|
-a, --all
|
|
19
|
-
|
|
19
|
+
Include all models (not ActiveRecord::Base derived)
|
|
20
|
+
|
|
20
21
|
-b, --brief
|
|
21
|
-
|
|
22
|
+
Generate compact diagram (no attributes nor methods)
|
|
23
|
+
|
|
22
24
|
-c, --compact
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Add a label with diagram information (type, date, version)
|
|
25
|
+
Concentrate edges
|
|
26
|
+
|
|
26
27
|
-i, --inherit
|
|
27
|
-
|
|
28
|
+
Include inheritance relations
|
|
29
|
+
|
|
30
|
+
-l, --label
|
|
31
|
+
Add a label with diagram information (type, date, version)
|
|
32
|
+
|
|
33
|
+
-m, --modules
|
|
34
|
+
Include modules
|
|
35
|
+
|
|
28
36
|
-h, --help
|
|
29
|
-
|
|
37
|
+
Display this help message and exit
|
|
38
|
+
|
|
30
39
|
-v, --version
|
|
31
|
-
|
|
40
|
+
Display version information and exit
|
|
32
41
|
|
|
33
42
|
== Commands
|
|
34
43
|
|
|
35
44
|
-M
|
|
36
|
-
|
|
45
|
+
Generate models diagram
|
|
46
|
+
|
|
37
47
|
-C
|
|
38
|
-
|
|
48
|
+
Generate controllers diagram
|
|
39
49
|
|
|
40
50
|
== Examples
|
|
41
51
|
|
data/rake.gemspec
CHANGED
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: railroad
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.
|
|
7
|
-
date: 2007-04-
|
|
6
|
+
version: 0.2.0
|
|
7
|
+
date: 2007-04-08 00:00:00 -03:00
|
|
8
8
|
summary: A DOT diagram generator for Ruby on Rail applications
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|