module SecretServer
Secret Server SDK client integration for Ruby
Constants
- VERSION
Attributes
client[R]
Public Class Methods
method_missing(m, *params, &block)
click to toggle source
Calls superclass method
# File lib/secret_server.rb, line 14 def method_missing(m, *params, &block) if @client.respond_to?(m) @client.send(m, *params, &block) else super end end
module_init!()
click to toggle source
# File lib/secret_server.rb, line 9 def module_init! @client = SdkClient.new self end
respond_to_missing?(m, p = false)
click to toggle source
Calls superclass method
# File lib/secret_server.rb, line 22 def respond_to_missing?(m, p = false) @client.respond_to?(m, p) || super end