Sha256: ef42324b39066306f7d6eea7a9b2b5d112793b5f1505eaf573046ec797d47173

Contents?: true

Size: 333 Bytes

Versions: 6

Compression:

Stored size: 333 Bytes

Contents

# -*- coding: utf-8 -*-
require 'logger'

module SelectableAttr
  autoload :VERSION, 'selectable_attr/version'
  autoload :Enum, 'selectable_attr/enum'
  autoload :Base, 'selectable_attr/base'

  class << self
    def logger
      @logger ||= Logger.new(STDERR)
    end
    def logger=(value)
      @logger = value
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
selectable_attr-0.3.17 lib/selectable_attr.rb
selectable_attr-0.3.16 lib/selectable_attr.rb
selectable_attr-0.3.15 lib/selectable_attr.rb
selectable_attr-0.3.14 lib/selectable_attr.rb
selectable_attr-0.3.13 lib/selectable_attr.rb
selectable_attr-0.3.12 lib/selectable_attr.rb