railroady 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/AUTHORS.rdoc CHANGED
@@ -13,5 +13,7 @@ http://railroady.prestonlee.com
13
13
  * David Jones
14
14
  * Mike Dalessio
15
15
  * Preston Lee (http://prestonlee.com)
16
+ * Tim Harvey
17
+ * Atli Christiansen
16
18
 
17
19
  And of course, many thanks to the many patch submitters and testers that make this possible!
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,8 @@
1
1
  = Changes
2
2
 
3
+ == Version 1.0.1
4
+ - Patch to fix bug for projects with spaces in the path. (Thanks, Tim Harvey!)
5
+
3
6
  == Version 1.0.0
4
7
  - After months of community testing, we're finally at 1.0.0. Woohoo! This release is 100% compatible with the last pre-1.0.0 release.
5
8
  - Patch for model classes not in the root module namespace.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 0
4
- :patch: 0
4
+ :patch: 1
5
5
  :build:
data/tasks/railroady.rake CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  # Returns an absolute path for the following file.
11
11
  def full_path(name = 'test.txt')
12
- f = File.join(Rails.root.to_s, 'doc', name)
12
+ f = File.join(Rails.root.to_s.gsub(' ', '\ '), 'doc', name)
13
13
  f.to_s
14
14
  end
15
15
 
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railroady
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 0
9
- version: 1.0.0
4
+ prerelease:
5
+ version: 1.0.1
10
6
  platform: ruby
11
7
  authors:
12
8
  - Preston Lee
@@ -17,7 +13,7 @@ autorequire:
17
13
  bindir: bin
18
14
  cert_chain: []
19
15
 
20
- date: 2011-01-27 00:00:00 -07:00
16
+ date: 2011-02-05 00:00:00 -07:00
21
17
  default_executable: railroady
22
18
  dependencies: []
23
19
 
@@ -70,21 +66,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
66
  requirements:
71
67
  - - ">="
72
68
  - !ruby/object:Gem::Version
73
- segments:
74
- - 0
75
69
  version: "0"
76
70
  required_rubygems_version: !ruby/object:Gem::Requirement
77
71
  none: false
78
72
  requirements:
79
73
  - - ">="
80
74
  - !ruby/object:Gem::Version
81
- segments:
82
- - 0
83
75
  version: "0"
84
76
  requirements: []
85
77
 
86
78
  rubyforge_project:
87
- rubygems_version: 1.3.7
79
+ rubygems_version: 1.5.0
88
80
  signing_key:
89
81
  specification_version: 3
90
82
  summary: Ruby on Rails 3 model and controller UML class diagram generator.