Class: SimpleBackup::Source::Mysql
- Defined in:
- lib/simple_backup/source/mysql.rb
Constant Summary collapse
- @@mysql =
Utils::MySQL.instance
Instance Method Summary collapse
Methods inherited from Abstract
#backends=, #backup_file, #cleanup, #desc, #get, #keep_last, #keep_last=, #name, #name=, #supports, #tmp_base_path=, #type
Instance Method Details
#configure(options = {}) ⇒ Object
6 7 8 9 10 11 |
# File 'lib/simple_backup/source/mysql.rb', line 6 def configure( = {}) @db = @name unless [:db] @db = [:db] if [:db] @exclude_tables = [:exclude_tables] if [:exclude_tables] end |