11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/generators/stache/controller/controller_generator.rb', line 11
def create_view_files
model_path = File.join(class_path, file_name)
base_mustache_view_path = File.join("app/views", model_path)
empty_directory base_mustache_view_path
base_mustache_template_path = File.join("app/templates", model_path)
empty_directory base_mustache_template_path
@base_class = Stache.template_base_class
actions.each do |action|
@action = action
mustache_view_path = File.join(base_mustache_view_path,
"#{action}.rb")
mustache_template_path = File.join(base_mustache_template_path,
"#{action}.#{Stache.template_extension}")
template "view.rb.erb", mustache_view_path
template "view.html.mustache.erb", mustache_template_path
end
end
|