Sha256: 18b25cd1b49dee26ae6b2f1b81797dea117e852fe3d58694e86681afa9751f25
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
module IronWorkerNG module Feature module Perl module MergeExec class Feature < IronWorkerNG::Feature::Base attr_reader :path def initialize(code, path) super(code) @path = path end def hash_string Digest::MD5.hexdigest(@path + File.mtime(rebase(@path)).to_i.to_s) end def bundle(zip) IronCore::Logger.debug 'IronWorkerNG', "Bundling perl exec with path='#{@path}'" zip_add(zip, File.basename(@path), rebase(@path)) end end module InstanceMethods def merge_exec(path=nil) @exec ||= nil return @exec unless path unless @exec.nil? IronCore::Logger.warn 'IronWorkerNG', "Ignoring attempt to merge perl exec with path='#{path}'" return end @exec = IronWorkerNG::Feature::Perl::MergeExec::Feature.new(self, path) IronCore::Logger.info 'IronWorkerNG', "Merging perl exec with path='#{path}'" @features << @exec end alias :exec :merge_exec alias :merge_worker :merge_exec alias :worker :merge_worker end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
iron_worker_ng-0.8.3 | lib/iron_worker_ng/feature/perl/merge_exec.rb |
iron_worker_ng-0.8.2 | lib/iron_worker_ng/feature/perl/merge_exec.rb |