class Capistrano::Configuration::Server::Properties
Public Instance Methods
fetch(key)
click to toggle source
Making the properties indifferent to symbol/string keys.
# File lib/california/stage.rb, line 94 def fetch(key) @properties[key] || @properties[key.to_s] end