class IRBRemote::Configuration

Attributes

host[RW]
port[RW]

Public Class Methods

new() click to toggle source
# File lib/irb_remote/configuration.rb, line 5
def initialize
  @host = ENV.fetch('IRB_REMOTE_HOST', 'localhost')
  @port = Integer(ENV.fetch('IRB_REMOTE_PORT', '9876'))
end