Sha256: 0a21d2a67ce7c226c7935ca7b83e8ba39019ca757ddc6415e4e643508c74f49a

Contents?: true

Size: 1.42 KB

Versions: 12

Compression:

Stored size: 1.42 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

          def self.included(base)
            IronWorkerNG::Code::Base.register_feature(:name => 'merge_dir', :for_klass => base, :args => 'PATH[,DEST]')
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
iron_worker_ng-0.7.4 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.7.3 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.7.2 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.7.1 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.7.0 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.8 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.7 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.6 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.5 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.4 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.3 lib/iron_worker_ng/feature/common/merge_dir.rb
iron_worker_ng-0.6.2 lib/iron_worker_ng/feature/common/merge_dir.rb