drewda-railroad 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/railroad/controllers_diagram.rb +1 -1
- data/rake.gemspec +1 -1
- metadata +1 -1
@@ -33,7 +33,7 @@ class ControllersDiagram < AppDiagram
|
|
33
33
|
begin
|
34
34
|
disable_stdout
|
35
35
|
# ApplicationController must be loaded first
|
36
|
-
require "app/controllers/
|
36
|
+
require "app/controllers/application_controller.rb"
|
37
37
|
files = Dir.glob("app/controllers/**/*_controller.rb") - @options.exclude
|
38
38
|
files.each {|c| require c }
|
39
39
|
enable_stdout
|
data/rake.gemspec
CHANGED