module OpConnect
Ruby toolkit for the 1Password Connect REST API.
Constants
- VERSION
Public Class Methods
client()
click to toggle source
API client based on configured options {Configurable}
@return [OpConnect::Client] API wrapper
# File lib/op_connect.rb, line 40 def client return @client if defined?(@client) && @client.same_options?(options) @client = OpConnect::Client.new(options) end