Sha256: d791756dd8fb8b23c9d25781316d2f9346ca8bee1e76cef81b97f24445c3a0ba
Contents?: true
Size: 433 Bytes
Versions: 3
Compression:
Stored size: 433 Bytes
Contents
module Sublayer module Components class OutputFunction include Sublayer::Components attr_reader :name def self.create(options) ("Sublayer::Components::"+options[:type].to_s.camelize).constantize.new(options) end def to_hash # Raise not implemented error raise NotImplementedError end def to_xml raise NotImplementedError end end end end
Version data entries
3 entries across 3 versions & 1 rubygems