Class: DbTimeMachine::Configuration
- Inherits:
-
Object
- Object
- DbTimeMachine::Configuration
- Defined in:
- lib/db_time_machine.rb
Instance Attribute Summary collapse
-
#fog_connection ⇒ Object
Returns the value of attribute fog_connection.
-
#fog_dir ⇒ Object
Returns the value of attribute fog_dir.
-
#tables ⇒ Object
Returns the value of attribute tables.
-
#tmp_folder ⇒ Object
Returns the value of attribute tmp_folder.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 11 12 |
# File 'lib/db_time_machine.rb', line 7 def initialize self.tables = [] self.tmp_folder = "/tmp" self.fog_connection = nil self.fog_dir = nil end |
Instance Attribute Details
#fog_connection ⇒ Object
Returns the value of attribute fog_connection.
5 6 7 |
# File 'lib/db_time_machine.rb', line 5 def fog_connection @fog_connection end |
#fog_dir ⇒ Object
Returns the value of attribute fog_dir.
5 6 7 |
# File 'lib/db_time_machine.rb', line 5 def fog_dir @fog_dir end |
#tables ⇒ Object
Returns the value of attribute tables.
5 6 7 |
# File 'lib/db_time_machine.rb', line 5 def tables @tables end |
#tmp_folder ⇒ Object
Returns the value of attribute tmp_folder.
5 6 7 |
# File 'lib/db_time_machine.rb', line 5 def tmp_folder @tmp_folder end |