Sha256: 21223dc47a508d34652c6eccd30d39f3015f9119127f70ddf2955c195be398b9
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
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.empty? || dest.end_with?('/') ? '' : '/') 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(container) IronCore::Logger.debug 'IronWorkerNG', "Bundling dir with path='#{@path}' and dest='#{@dest}'" if (not @code.full_remote_build) || (not IronWorkerNG::Fetcher.remote?(rebase(@path))) container_add(container, @dest + File.basename(@path), rebase(@path)) end end def command if @code.remote_build_command || @code.full_remote_build if @code.full_remote_build && IronWorkerNG::Fetcher.remote?(rebase(@path)) "dir '#{rebase(@path)}', '#{@dest}'" else "dir '#{@code.dest_dir}#{@dest}#{File.basename(@path)}', '#{@dest}'" end else "dir '#{@path}', '#{@dest}'" end 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iron_worker_ng-0.11.0 | lib/iron_worker_ng/feature/common/merge_dir.rb |