Module: RubyVault::ClassMethods
- Included in:
- RubyVault
- Defined in:
- lib/ruby_vault.rb
Instance Method Summary collapse
- #list(parameters = {}, invocation_options = {}) ⇒ Object
- #login(parameters = {}, invocation_options = {}) ⇒ Object
- #write(parameters = {}, invocation_options = {}) ⇒ Object
Instance Method Details
#list(parameters = {}, invocation_options = {}) ⇒ Object
34 35 36 37 |
# File 'lib/ruby_vault.rb', line 34 def list(parameters = {}, = {}) exec(RubyVault::Commands::List, parameters, ) end |
#login(parameters = {}, invocation_options = {}) ⇒ Object
24 25 26 27 |
# File 'lib/ruby_vault.rb', line 24 def login(parameters = {}, = {}) exec(RubyVault::Commands::Login, parameters, ) end |
#write(parameters = {}, invocation_options = {}) ⇒ Object
29 30 31 32 |
# File 'lib/ruby_vault.rb', line 29 def write(parameters = {}, = {}) exec(RubyVault::Commands::Write, parameters, ) end |