class SyncFog::SyncFogAssets

Public Class Methods

new() click to toggle source
# File lib/sync_fog/sync_fog_assets.rb, line 9
def initialize

end

Public Instance Methods

filter_zip(files) click to toggle source

Helper

# File lib/sync_fog/sync_fog_assets.rb, line 28
def filter_zip(files)
  files_copy = []
  files_strings = files.map{|f| f.to_s}

  files.each do |file|

    # remove files which have an gz equivalent
    unless File.extname(file) != ".gz" &&
           files_strings.include?( "#{file.to_s}.gz" )
       
       files_copy << file
    end
  end

  files_copy
end
list(dir=".") click to toggle source
# File lib/sync_fog/sync_fog_assets.rb, line 13
def list(dir=".")

  root_path = Pathname.new File.expand_path('..',dir) # one dir up
  files = []

  Dir.glob("#{dir}/**/*") do |file|
    path = Pathname.new file
    files << path.relative_path_from(root_path) unless %w(. ..).include?(file)
  end

  SyncFog.configuration.use_gzip ? filter_zip(files) : files
end