Method: ET::Config#host

Defined in:
lib/et/config.rb

#hostObject



16
17
18
19
20
21
22
# File 'lib/et/config.rb', line 16

def host
  if options["host"].start_with?("http")
    options["host"]
  else
    "http://" + options["host"]
  end
end