Class: Backup::Adapters::PostgreSQL
- Defined in:
- lib/backup/adapters/postgresql.rb
Instance Attribute Summary collapse
-
#additional_options ⇒ Object
Returns the value of attribute additional_options.
-
#database ⇒ Object
Returns the value of attribute database.
-
#host ⇒ Object
Returns the value of attribute host.
-
#password ⇒ Object
Returns the value of attribute password.
-
#port ⇒ Object
Returns the value of attribute port.
-
#skip_tables ⇒ Object
Returns the value of attribute skip_tables.
-
#socket ⇒ Object
Returns the value of attribute socket.
-
#user ⇒ Object
Returns the value of attribute user.
Attributes inherited from Base
#compressed_file, #encrypt_with_password, #encrypted_file, #final_file, #keep_backups, #performed_file, #procedure, #timestamp, #tmp_path, #trigger
Method Summary
Methods inherited from Base
#create_tmp_folder, #encrypt, #initialize, #notify, #record, #remove_tmp_files, #store, #system_messages
Methods included from CommandHelper
Constructor Details
This class inherits a constructor from Backup::Adapters::Base
Instance Attribute Details
#additional_options ⇒ Object
Returns the value of attribute additional_options.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def @additional_options end |
#database ⇒ Object
Returns the value of attribute database.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def database @database end |
#host ⇒ Object
Returns the value of attribute host.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def host @host end |
#password ⇒ Object
Returns the value of attribute password.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def password @password end |
#port ⇒ Object
Returns the value of attribute port.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def port @port end |
#skip_tables ⇒ Object
Returns the value of attribute skip_tables.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def skip_tables @skip_tables end |
#socket ⇒ Object
Returns the value of attribute socket.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def socket @socket end |
#user ⇒ Object
Returns the value of attribute user.
5 6 7 |
# File 'lib/backup/adapters/postgresql.rb', line 5 def user @user end |