Sha256: caea335becc93171587e4fa855b987043256dbff373bcad49dc1dcb43a1ca192

Contents?: true

Size: 248 Bytes

Versions: 2

Compression:

Stored size: 248 Bytes

Contents

# frozen_string_literal: true

module Acb
  class MasterColumn
    attr_reader :key

    def initialize(key, **options)
      @key = key
      @options = options
    end

    def to_column(name)
      Column.new(name, **@options)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acb-0.2.1 lib/acb/master_column.rb
acb-0.2.0 lib/acb/master_column.rb