class Ratbug::ActiveRecordSchemaMonkey

Attributes

tables[RW]

Public Class Methods

new() click to toggle source
# File lib/ratbug/active_record_schema_monkey.rb, line 23
def initialize
  # {table_name: Table}
  @tables = Hash.new
end

Private Instance Methods

method_missing(symbol, *args) click to toggle source
# File lib/ratbug/active_record_schema_monkey.rb, line 32
def method_missing(symbol, *args)
  puts "ActiveRecord::Schema##{symbol.to_s}(#{args.join(', ')}) has no use currently"
end