dm-haml-scaffold-generator 0.0.3 → 0.0.4
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.
@@ -83,7 +83,7 @@ class DmHamlScaffoldGenerator < Rails::Generator::NamedBase
|
|
83
83
|
|
84
84
|
# partial for the index
|
85
85
|
m.template "dm_haml_scaffold:view__singular_haml.erb",
|
86
|
-
File.join('app/views', controller_class_path, controller_file_name, "_#{
|
86
|
+
File.join('app/views', controller_class_path, controller_file_name, "_#{ singular_name }.#{ default_file_extension }")
|
87
87
|
|
88
88
|
# Model class, unit test
|
89
89
|
m.template 'dm_haml_scaffold:model.rb',
|
@@ -149,23 +149,23 @@ protected
|
|
149
149
|
|
150
150
|
def route_resources resource
|
151
151
|
sentinel = 'ActionController::Routing::Routes.draw do |map|'
|
152
|
-
|
152
|
+
route_symbol = resource.underscore.pluralize
|
153
|
+
logger.route "map.resources #{ route_symbol }"
|
153
154
|
unless options[:pretend]
|
154
155
|
gsub_file 'config/routes.rb', /(#{ Regexp.escape(sentinel) })/mi do |match|
|
155
156
|
|
156
157
|
if !resource.split('/')[1].nil?
|
157
158
|
one = resource.split('/')[0]
|
158
|
-
two = resource.split('/')[1]
|
159
|
+
two = resource.split('/')[1].underscore
|
159
160
|
"#{ match }\n map.namespace(:#{ one }) do |#{ one }|\n #{ one }.resources :#{ two.pluralize }\n end"
|
160
161
|
else
|
161
|
-
"#{ match }\n map.resources :#{
|
162
|
+
"#{ match }\n map.resources :#{ route_symbol }\n"
|
162
163
|
end
|
163
164
|
|
164
165
|
end
|
165
166
|
end
|
166
167
|
end
|
167
168
|
|
168
|
-
|
169
169
|
def gsub_file relative_destination, regexp, *args, &block
|
170
170
|
path = destination_path relative_destination
|
171
171
|
content = File.read(path).gsub(regexp, *args, &block)
|