Class: Challenge

Inherits:
Exercise show all
Includes:
WithLayout
Defined in:
app/models/exercise/challenge.rb

Direct Known Subclasses

Interactive, QueriableChallenge

Constant Summary

Constants inherited from Exercise

Exercise::RANDOMIZED_FIELDS

Instance Method Summary collapse

Methods inherited from Exercise

#choice_index_for, #choice_values, #console?, #custom?, #description_context, #description_task, #ensure_type!, #files_for, find_transparently!, #friendly, #guide_done_for?, #import_from_resource_h!, #inspection_keywords, #limited?, locate!, #messages_path_for, #messages_url_for, #new_solution, #pending_siblings_for, #previous, #reclassify!, #search_tags, #settings, #sibling_at, #splitted_description, #structural_parent, #submission_for, #to_resource_h, #transparent_id, #transparent_params, #try_submit_solution!, #used_in?

Methods included from SiblingsNavigation

#navigable_name, #next_for, #restart

Methods included from ParentNavigation

#leave, #navigable_name, #navigable_parent, #navigation_end?

Methods included from Submittable

#find_assignment_and_submit!, #submit!

Methods included from Questionable

#submit_question!

Methods included from WithAssignments

#assignment_for, #find_assignment_for, #has_messages_for?, #messages_for, #status_for

Methods included from FriendlyName

#friendly_name, #to_param

Methods included from Assistable

#assist_with, #assistant

Methods included from WithRandomizations

#randomizer, #seed, #seed_with!

Methods included from WithDiscussions

#discuss!, #submission_for, #try_solve_discussions

Methods included from WithDescription

#description_teaser

Methods inherited from ApplicationRecord

aggregate_of, all_except, defaults, #delete, #destroy!, numbered, organic_on, resource_fields, #save, #save_and_notify!, #save_and_notify_changes!, serialize_symbolized_hash_array, #update_and_notify!, update_or_create!, whitelist_attributes

Instance Method Details

#extraObject



11
12
13
14
15
16
17
# File 'app/models/exercise/challenge.rb', line 11

def extra(*)
  [guide.extra, super]
    .compact
    .join("\n")
    .strip
    .ensure_newline
end

#reset!Object



6
7
8
9
# File 'app/models/exercise/challenge.rb', line 6

def reset!
  super
  self.layout = self.class.default_layout
end