Project

General

Profile

Download (237 Bytes) Statistics
| Branch: | Tag: | Revision:
module PuppetLookupValueExtensions
extend ActiveSupport::Concern

included do
validate :value_present?
end

def value_present?
self.errors.add(:value, :blank) if value.to_s.empty? && !omit && lookup_key.puppet?
end
end
(32-32/48)