class Flaun::Config
Attributes
port[RW]
targets[RW]
Public Class Methods
new()
click to toggle source
# File lib/flaun/config.rb, line 5 def initialize @targets = {} @port = 3000 end
Public Instance Methods
[](name)
click to toggle source
# File lib/flaun/config.rb, line 10 def [](name) @targets[name] end