Class: Apartment::Configs::MysqlConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/apartment/configs/mysql_config.rb

Overview

MySQL-specific configuration options. Placeholder for Phase 2 when MySQL adapter is implemented.

Instance Method Summary collapse

Constructor Details

#initializeMysqlConfig

Returns a new instance of MysqlConfig.



8
9
10
# File 'lib/apartment/configs/mysql_config.rb', line 8

def initialize
  # No MySQL-specific options yet.
end

Instance Method Details

#freeze!Object

Freeze mutable collections (none yet), then freeze self. Symmetric with PostgresqlConfig#freeze! for consistency.



14
15
16
# File 'lib/apartment/configs/mysql_config.rb', line 14

def freeze!
  freeze
end