5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/generators/trusty_cms/trusty_cms_generator.rb', line 5
def generate_config
template "Rakefile.erb", "Rakefile"
template "config.ru.erb", "config.ru"
template "boot.rb.erb", "config/boot.rb"
template "environment.rb.erb", "config/environment.rb"
template "application.rb.erb", "config/application.rb"
template "preinitializer.rb.erb", "config/preinitializer.rb"
template "routes.rb.erb", "config/routes.rb"
template "database.yml.erb", "config/database.yml"
template "environments/development.rb.erb", "config/environments/development.rb"
template "environments/test.rb.erb", "config/environments/test.rb"
template "environments/production.rb.erb", "config/environments/production.rb"
template "initializers/trusty_cms_config.rb.erb", "config/initializers/trusty_cms_config.rb"
template "initializers/secret_token.rb.erb", "config/initializers/secret_token.rb"
template "initializers/session_store.rb.erb", "config/initializers/session_store.rb"
remove_file 'app/controllers/application_controller.rb'
remove_file 'app/helpers/application_helper.rb'
remove_file 'app/assets/javascripts/application.js'
remove_file 'app/views/layouts/application.html.erb'
end
|