Sha256: fef2d5066f356374cbf2682665e293b84a660a0531ae8431aeaff308c0b13d4c

Contents?: true

Size: 689 Bytes

Versions: 3

Compression:

Stored size: 689 Bytes

Contents

# Only executed when installed as plugin.
# When installed as a gem must use the generator, unless using Rails >= 3.1,
#   in which case the asset pipeline takes care of everything
require 'fileutils'
include FileUtils

dir = "#{File.dirname(__FILE__)}/vendor/assets/javascripts"
rails_javascripts_dir = "#{Rails.root}/public/javascripts"

puts "copying flash.js to #{rails_javascripts_dir}"
cp "#{dir}/flash.js", rails_javascripts_dir

if File.exists?("#{rails_javascripts_dir}/jquery.cookie.js")
  puts "#{rails_javascripts_dir}/jquery.cookie.js already exists"
else
  puts "copying jquery.cookie.js to #{rails_javascripts_dir}"
  cp "#{dir}/jquery.cookie.js", rails_javascripts_dir
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cacheable_flash-0.2.2 install.rb
cacheable_flash-0.2.1 install.rb
cacheable_flash-0.2.0 install.rb