Sha256: c26fbbddb9f0db9e9909573f065e250ac2ad751c69ebf5384601ef72d53c2129

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

controller_template:
  type: file
  template_path: <%= File.join(templates_directory_path, "app", "controllers", "controller.rb.template") %>
  output_path: <%= File.join("app", "controllers", "#{@name_plural}_controller.rb") %>
edit_template:
  type: file
  template_path: <%= File.join(templates_directory_path, "app", "views", "edit.html.erb.template") %>
  output_path: <%= File.join("app", "views", @name_plural, "edit.html.erb") %>
index_template:
  type: file
  template_path: <%= File.join(templates_directory_path, "app", "views", "index.html.erb.template") %>
  output_path: <%= File.join("app", "views", @name_plural, "index.html.erb") %>
new_template:
  type: file
  template_path: <%= File.join(templates_directory_path, "app", "views", "new.html.erb.template") %>
  output_path: <%= File.join("app", "views", @name_plural, "new.html.erb") %>
show_template:
  type: file
  template_path: <%= File.join(templates_directory_path, "app", "views", "show.html.erb.template") %>
  output_path: <%= File.join("app", "views", @name_plural, "show.html.erb") %>
functional_teat_template:
  type: file
  template_path: <%= File.join(templates_directory_path, "test.rb.template") %>
  output_path: <%= File.join("test", "functional", "#{@name_plural}_controller_test.rb") %>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
mack-active_record-0.5.0 lib/scaffold_generator/manifest.yml
mack-active_record-0.5.1 lib/scaffold_generator/manifest.yml
mack-active_record-0.5.5 lib/scaffold_generator/manifest.yml
mack-data_mapper-0.5.1 lib/scaffold_generator/manifest.yml
mack-data_mapper-0.5.5 lib/scaffold_generator/manifest.yml
mack-data_mapper-0.5.0 lib/scaffold_generator/manifest.yml