Project

General

Profile

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

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

086ec942 Ohad Levy
end