Class: Rox::Server::SelfManagedOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/rox/server/self_managed_options.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(server_url:, analytics_url:) ⇒ SelfManagedOptions

Returns a new instance of SelfManagedOptions.



6
7
8
9
# File 'lib/rox/server/self_managed_options.rb', line 6

def initialize(server_url:, analytics_url:)
    @server_url = server_url
    @analytics_url = analytics_url
end

Instance Attribute Details

#analytics_urlObject (readonly)

Returns the value of attribute analytics_url.



4
5
6
# File 'lib/rox/server/self_managed_options.rb', line 4

def analytics_url
  @analytics_url
end

#server_urlObject (readonly)

Returns the value of attribute server_url.



4
5
6
# File 'lib/rox/server/self_managed_options.rb', line 4

def server_url
  @server_url
end