Skip to content

Instantly share code, notes, and snippets.

@mlins
Created October 2, 2009 17:36
Show Gist options
  • Save mlins/199930 to your computer and use it in GitHub Desktop.
Save mlins/199930 to your computer and use it in GitHub Desktop.
def completed?
if subwizard?
all_instances.all? do |instance|
instance.decendants.all? do |decendant|
decendant.completed?
end
end
elsif question?
model && model.valid?
else
decendants(true).all? do |decendant|
decendant.completed?
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment