Sha256: decbe16acd610f5632e3b2132edb321d722800b318b7a0aa848ed7117d380bc8
Contents?: true
Size: 1.26 KB
Versions: 6
Compression:
Stored size: 1.26 KB
Contents
module IronWorkerNG module Feature module Mono 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(container) IronCore::Logger.debug 'IronWorkerNG', "Bundling mono exec with path='#{@path}'" container_add(container, 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 mono exec with path='#{path}'" return end @exec = IronWorkerNG::Feature::Mono::MergeExec::Feature.new(self, path) IronCore::Logger.info 'IronWorkerNG', "Merging mono 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
6 entries across 6 versions & 1 rubygems