class Hula::CloudFoundry::ServiceBroker
Attributes
name[R]
url[R]
Public Class Methods
new(name:, url:)
click to toggle source
# File lib/hula/cloud_foundry/service_broker.rb, line 18 def initialize(name:, url:) @name = name @url = url end
Public Instance Methods
==(other)
click to toggle source
# File lib/hula/cloud_foundry/service_broker.rb, line 23 def ==(other) is_a?(other.class) && @name == other.name && @url == other.url end
uri()
click to toggle source
# File lib/hula/cloud_foundry/service_broker.rb, line 27 def uri URI.parse(url) end