railroady 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,12 @@
1
1
  = Changes
2
2
 
3
+ == Version 0.11.2
4
+ - Bugfix for including gem version number in generated documents.
5
+ - Gem meta-data fixes.
6
+
7
+ == Version 0.11.1
8
+ - Minor bug fixes.
9
+
3
10
  == Version 0.9.1
4
11
  - Removal of deprecated API call.
5
12
  - Documentation updates.
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 = "A DOT diagram generator for Ruby on Rail applications."
13
- gem.description = gem.summary
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
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 11
4
- :patch: 1
4
+ :patch: 2
5
5
  :build:
@@ -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
- "\\l\", fontsize=14]\n"
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
@@ -1,8 +1,9 @@
1
1
  require 'yaml'
2
2
  module RailRoady
3
3
  module VERSION #:nodoc:
4
- if File.exist?('../VERSION.yml')
5
- config = YAML.load(File.read('../VERSION.yml'))
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
- - 1
9
- version: 0.11.1
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-17 00:00:00 -07:00
20
+ date: 2010-11-18 00:00:00 -07:00
21
21
  default_executable: railroady
22
22
  dependencies: []
23
23
 
24
- description: A DOT diagram generator for Ruby on Rail applications.
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: A DOT diagram generator for Ruby on Rail applications.
90
+ summary: Ruby on Rails 3 model and controller UML class diagram generator.
91
91
  test_files: []
92
92