# File lib/puppet/status.rb, line 17 def self.from_pson( pson ) self.new( pson ) end
# File lib/puppet/status.rb, line 9 def initialize( status = nil ) @status = status || {"is_alive" => true} end
# File lib/puppet/status.rb, line 21 def name "status" end
# File lib/puppet/status.rb, line 25 def name=(name) # NOOP end
# File lib/puppet/status.rb, line 13 def to_pson(*args) @status.to_pson end