railroady 0.11.1 → 0.11.2
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.rdoc +7 -0
- data/Rakefile +2 -2
- data/VERSION.yml +1 -1
- data/lib/railroady/diagram_graph.rb +3 -2
- data/lib/railroady/version.rb +3 -2
- metadata +5 -5
data/CHANGELOG.rdoc
CHANGED
data/Rakefile
CHANGED
|
@@ -9,8 +9,8 @@ begin
|
|
|
9
9
|
gem.email = ['conmotto@gmail.com', 'tcrawley@gmail.com', 'peter@hoeg.com', 'p.hoeg@northwind.sg', 'javier@smaldone.com.ar']
|
|
10
10
|
gem.homepage = "http://github.com/preston/railroady"
|
|
11
11
|
gem.authors = ["Preston Lee", "Tobias Crawley", "Peter Hoeg", "Javier Smaldone"]
|
|
12
|
-
gem.summary = "
|
|
13
|
-
gem.description =
|
|
12
|
+
gem.summary = "Ruby on Rails 3 model and controller UML class diagram generator."
|
|
13
|
+
gem.description = "Ruby on Rails 3 model and controller UML class diagram generator. Originally based on the 'railroad' plugin and contributions of many others. (`sudo port install graphviz` before use!)"
|
|
14
14
|
gem.files = FileList["[A-Z]*", "{autotest,bin,lib,spec,tasks}/**/*", ".document"]
|
|
15
15
|
gem.extra_rdoc_files = FileList["*.rdoc"]
|
|
16
16
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
data/VERSION.yml
CHANGED
|
@@ -68,8 +68,9 @@ class DiagramGraph
|
|
|
68
68
|
"Date: #{Time.now.strftime "%b %d %Y - %H:%M"}\\l" +
|
|
69
69
|
"Migration version: " +
|
|
70
70
|
"#{ActiveRecord::Migrator.current_version}\\l" +
|
|
71
|
-
"Generated by #{APP_HUMAN_NAME} #{APP_VERSION}"+
|
|
72
|
-
|
|
71
|
+
"Generated by #{APP_HUMAN_NAME} #{APP_VERSION}\\l"+
|
|
72
|
+
"http://railroady.prestonlee.com" +
|
|
73
|
+
"\\l\", fontsize=13]\n"
|
|
73
74
|
end
|
|
74
75
|
|
|
75
76
|
# Build a DOT graph node
|
data/lib/railroady/version.rb
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
require 'yaml'
|
|
2
2
|
module RailRoady
|
|
3
3
|
module VERSION #:nodoc:
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
f = File.join(File.dirname(__FILE__), '..', '..', 'VERSION.yml')
|
|
5
|
+
if File.exist?(f)
|
|
6
|
+
config = YAML.load(File.read(f))
|
|
6
7
|
MAJOR = config[:major]
|
|
7
8
|
MINOR = config[:minor]
|
|
8
9
|
PATCH = config[:patch]
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 11
|
|
8
|
-
-
|
|
9
|
-
version: 0.11.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.11.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Preston Lee
|
|
@@ -17,11 +17,11 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2010-11-
|
|
20
|
+
date: 2010-11-18 00:00:00 -07:00
|
|
21
21
|
default_executable: railroady
|
|
22
22
|
dependencies: []
|
|
23
23
|
|
|
24
|
-
description:
|
|
24
|
+
description: Ruby on Rails 3 model and controller UML class diagram generator. Originally based on the 'railroad' plugin and contributions of many others. (`sudo port install graphviz` before use!)
|
|
25
25
|
email:
|
|
26
26
|
- conmotto@gmail.com
|
|
27
27
|
- tcrawley@gmail.com
|
|
@@ -87,6 +87,6 @@ rubyforge_project:
|
|
|
87
87
|
rubygems_version: 1.3.7
|
|
88
88
|
signing_key:
|
|
89
89
|
specification_version: 3
|
|
90
|
-
summary:
|
|
90
|
+
summary: Ruby on Rails 3 model and controller UML class diagram generator.
|
|
91
91
|
test_files: []
|
|
92
92
|
|