10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/generators/best_boy_generator.rb', line 10
def copy_config_file
template 'best_boy.rb', 'config/initializers/best_boy.rb'
if not options[:asset_pipeline] == "asset" or not options[:asset]
template 'bootstrap/glyphicons-halflings-white.png', 'public/images/bootstrap/glyphicons-halflings-white.png'
template 'bootstrap/glyphicons-halflings.png', 'public/images/bootstrap/glyphicons-halflings.png'
template 'bootstrap/bootstrap.css', 'public/stylesheets/bootstrap.css'
template 'bootstrap/bootstrap_datepicker.css', 'public/stylesheets/bootstrap_datepicker.css'
template 'bootstrap/bootstrap_datepicker.js', 'public/javascripts/bootstrap_datepicker.js'
end
end
|