Sha256: a0dd3095619fd493fead0cd82a0d2a83a8f97f6bdde565c9c97dbf935a847308

Contents?: true

Size: 726 Bytes

Versions: 6

Compression:

Stored size: 726 Bytes

Contents

# Only executed when installed as plugin.
# When installed as a gem must use the generator, unless using Rails >= 3.1 and asset pipeline,
#   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

6 entries across 6 versions & 1 rubygems

Version Path
cacheable_flash-0.3.2 install.rb
cacheable_flash-0.3.1 install.rb
cacheable_flash-0.3.0 install.rb
cacheable_flash-0.2.10 install.rb
cacheable_flash-0.2.9 install.rb
cacheable_flash-0.2.8 install.rb