module Multiplicity
Constants
- VERSION
Public Class Methods
adapter()
click to toggle source
# File lib/multiplicity.rb, line 5 def self.adapter; @adapter; end
adapter=(adapter)
click to toggle source
# File lib/multiplicity.rb, line 7 def self.adapter=(adapter) @adapter = adapter end
domain()
click to toggle source
# File lib/multiplicity.rb, line 19 def self.domain; @domain; end
domain=(uri)
click to toggle source
# File lib/multiplicity.rb, line 21 def self.domain=(uri) @domain = uri.to_s end
table_name()
click to toggle source
# File lib/multiplicity.rb, line 11 def self.table_name @table ||= :tenants end
table_name=(value)
click to toggle source
# File lib/multiplicity.rb, line 15 def self.table_name=(value) @table = value.to_sym end