Class: Apartment::Configs::MysqlConfig
- Inherits:
-
Object
- Object
- Apartment::Configs::MysqlConfig
- 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
-
#freeze! ⇒ Object
Freeze mutable collections (none yet), then freeze self.
-
#initialize ⇒ MysqlConfig
constructor
A new instance of MysqlConfig.
Constructor Details
#initialize ⇒ MysqlConfig
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 |