Class: Koudoku::ViewsGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/koudoku/views_generator.rb

Instance Method Summary collapse

Instance Method Details

#installObject



19
20
21
22
23
24
25
# File 'lib/generators/koudoku/views_generator.rb', line 19

def install
  
  ["_card.html.erb","_pricing_table.html.erb", "edit.html.erb", "index.html.erb", "new.html.erb", "show.html.erb", "unauthorized.html.erb"].each do |file|
    copy_file file, "app/views/koudoku/subscriptions/#{file}"
  end

end