Sha256: a619c467402cb84c76f1b1ac6e805551b8736455434d06ec63d13daa2afae75f
Contents?: true
Size: 1016 Bytes
Versions: 1
Compression:
Stored size: 1016 Bytes
Contents
# encoding: utf-8 module CacheableFlash # Copies javascript libraries flash.js and jquery.cookie.js to public/javascripts/ (Rails 3.0.X only, Rails 3.1 has asset pipeline) # # @example # $ rails generate cacheable_flash:install # # @todo Test with Rails 3.0 class InstallGenerator < Rails::Generators::Base source_root File.expand_path('../../../../../vendor/assets/javascripts/', __FILE__) # Rails 3.1 has the asset pipeline, no need to copy javascript files anymore # Rails 3.0 doesn't have an asset pipeline, so we copy in javascript files if ::Rails::VERSION::MAJOR == 3 && ::Rails::VERSION::MINOR == 1 ActiveSupport::Deprecation.warn("Rails 3.1 has the asset pipeline, so you only need to copy javascript files if you aren't using it.") end desc "Copies some JS files to public/javascripts/" def copy_files template 'flash.js', 'public/javascripts/flash.js' template 'jquery.cookie.js', 'public/javascripts/jquery.cookie.js' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cacheable_flash-0.2.1 | lib/generators/cacheable_flash/install/install_generator.rb |