class Paradocs::Results
Attributes
environment[R]
errors[R]
output[R]
Public Class Methods
new(output, errors, environment)
click to toggle source
# File lib/paradocs/results.rb, line 5 def initialize(output, errors, environment) @output, @errors, @environment = output, errors, environment end
Public Instance Methods
valid?()
click to toggle source
# File lib/paradocs/results.rb, line 9 def valid? !errors.keys.any? end