7
8
9
10
11
12
13
14
15
|
# File 'lib/generators/webcli/install/install_generator.rb', line 7
def create_files
copy_file 'webcli.js', "public/javascripts/plugin.jquery.webcli.js"
copy_file 'webcli.config.js', "public/javascripts/config.webcli.js"
copy_file 'webcli.css', "public/stylesheets/plugin.webcli.css"
say_status("fetching", "jQuery hotkeys plugin (google code 0.7.9)", :green)
get "http://js-hotkeys.googlecode.com/files/jquery.hotkeys-0.7.9.min.js", 'public/javascripts/jquery.hotkeys-0.7.9.min.js'
end
|