Sha256: d71a2fa970c07b4dd4c0e9a69bc3a6d1e2f4a1cdbe710bc576c75d8b03941d54

Contents?: true

Size: 257 Bytes

Versions: 4

Compression:

Stored size: 257 Bytes

Contents

module Hypercuke

  class Config
    attr_reader :layers, :topics
    def initialize
      @layers = NameList.new
      @topics = NameList.new
    end

    def layer_names
      layers.to_a
    end

    def topic_names
      topics.to_a
    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hypercuke-0.5.2 lib/hypercuke/config.rb
hypercuke-0.5.1 lib/hypercuke/config.rb
hypercuke-0.5.0 lib/hypercuke/config.rb
hypercuke-0.4.1 lib/hypercuke/config.rb