Sha256: 3432e9d0ee68eddbecd800d7883ffbff41ccd2c0dd7db444b19ef938d239381b

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

require 'pathname'

module IronWorkerNG
  module Feature
    module Common
      module MergeDir
        class Feature < IronWorkerNG::Feature::Base
          attr_reader :path
          attr_reader :dest

          def initialize(code, path, dest)
            super(code)

            @path = path
            @dest = dest
            @dest = Pathname.new(dest).cleanpath.to_s + '/' unless @dest.empty?
          end

          def hash_string
            s = @path + @dest + File.mtime(rebase(@path)).to_i.to_s

            Dir.glob(rebase(@path) + '/**/**') do |path|
              s += path + File.mtime(path).to_i.to_s
            end

            Digest::MD5.hexdigest(s)
          end

          def bundle(zip)
            IronCore::Logger.debug 'IronWorkerNG', "Bundling dir with path='#{@path}' and dest='#{@dest}'"

            zip_add(zip, @dest + File.basename(@path), rebase(@path))
          end
        end

        module InstanceMethods
          def merge_dir(path, dest = '')
            IronCore::Logger.info 'IronWorkerNG', "Merging dir with path='#{path}' and dest='#{dest}'"

            @features << IronWorkerNG::Feature::Common::MergeDir::Feature.new(self, path, dest)
          end

          alias :dir :merge_dir
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
iron_worker_ng-0.8.4 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.8.3 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.8.2 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.8.0 lib/iron_worker_ng/feature/common/merge_dir.rb