Sha256: cf1da3cfd9e3edece84993bdbd02b2e7f95f492e09bc0378529718a2332f0f38

Contents?: true

Size: 405 Bytes

Versions: 1

Compression:

Stored size: 405 Bytes

Contents

# taxonomite_configuration.rb
#   hold configuration parameters for the library
#

module Taxonomite
    class Configuration
        # future versions may extend to using different tree models
        # - for now uses a custom tree model (:self)
        attr_accessor   :use_tree_model

    protected
        # initialize
        def initialize
            @use_tree_model = :self
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
taxonomite-0.1.0 lib/taxonomite/taxonomite_configuration.rb