Sha256: 168b98b2785539ff9386672cf9294081c874e3a08a67ccbe9cbbd13b9f4440f2

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 KB

Contents

module IronWorkerNG
  module Feature
    module Ruby
      module MergeWorker
        class Feature < IronWorkerNG::Feature::Base
          attr_reader :path
          attr_reader :klass

          def initialize(path, klass)
            @path = File.expand_path(path)
            @klass = klass
          end

          def hash_string
            Digest::MD5.hexdigest(@path + @klass + File.mtime(@path).to_i.to_s)
          end

          def bundle(zip)
            zip.add(File.basename(@path), @path)
          end

          def code_for_init
            "worker_file_name = '#{File.basename(@path)}'\nworker_class_name='#{@klass}'"
          end
        end

        module InstanceMethods
          attr_reader :worker

          def merge_worker(path, klass = nil)
            @worker ||= nil 

            return unless @worker.nil?

            if klass == nil
              klass = File.basename(path).gsub(/\.rb$/, '').capitalize.gsub(/_./) { |x| x[1].upcase }
            end

            @name ||= klass

            @worker = IronWorkerNG::Feature::Ruby::MergeWorker::Feature.new(path, klass)
            @features << @worker
          end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
iron_worker_ng-0.1.14 lib/iron_worker_ng/feature/ruby/merge_worker.rb
iron_worker_ng-0.1.13 lib/iron_worker_ng/feature/ruby/merge_worker.rb
iron_worker_ng-0.1.12 lib/iron_worker_ng/feature/ruby/merge_worker.rb
iron_worker_ng-0.1.11 lib/iron_worker_ng/feature/ruby/merge_worker.rb
iron_worker_ng-0.1.10 lib/iron_worker_ng/feature/ruby/merge_worker.rb
iron_worker_ng-0.1.9 lib/iron_worker_ng/feature/ruby/merge_worker.rb