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
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}.html.mustache")
template "view.rb.erb", mustache_view_path
template "view.html.mustache.erb", mustache_template_path
end
end