Sha256: 009a17b35c421dc82479f572e900d4bdae3c1f1a9ea5d253fe52b33b7e6e5214

Contents?: true

Size: 504 Bytes

Versions: 1

Compression:

Stored size: 504 Bytes

Contents

module PowerStencil
  module CommandProcessors

    class Get

      include Climatic::Script::UnimplementedProcessor
      include Climatic::Proxy
      include PowerStencil::Project::Proxy
      include PowerStencil::CommandProcessors::EntityHelper

      def execute
        targets = targets_from_criteria analyse_extra_params, project.engine.root_universe
        targets.sort{|a, b| a.as_path <=> b.as_path}.each do |target|
          display_entity target
        end
      end

    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
power_stencil-0.3.9 lib/power_stencil/command_processors/get.rb