Sha256: bb6ecb0552098e0f7fcdc92f9ee2f7766bcecd890f1387526e5250fa6baff937

Contents?: true

Size: 319 Bytes

Versions: 3

Compression:

Stored size: 319 Bytes

Contents

module Docks
  module Tags
    class Factory < Base
      def initialize
        @name = :factory
        @multiline = false
      end

      def process(symbol)
        symbol[@name] = true
        symbol.symbol_type = Types::Symbol::FACTORY
        Containers::Factory.from_symbol(symbol)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
docks_app-0.0.3 lib/docks/tags/factory_tag.rb
docks_app-0.0.2 lib/docks/tags/factory_tag.rb
docks_app-0.0.1 lib/docks/tags/factory_tag.rb