# File lib/puma/state_file.rb, line 5 def initialize @options = {} end
# File lib/puma/state_file.rb, line 13 def load(path) @options = YAML.load File.read(path) end
# File lib/puma/state_file.rb, line 9 def save(path) File.write path, YAML.dump(@options) end