Project

General

Profile

Download (246 Bytes) Statistics
| Branch: | Tag: | Revision:
class HostParameter < Parameter
belongs_to :host
validates_presence_of :host_id, :message => "parameters require an associated host", :unless => :nested

def to_s
"#{host_id ? host.name : "unassociated"}: #{name} = #{value}"
end

end
(13-13/26)