mumuki-laboratory 7.6.2 → 7.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +184 -2
- data/app/assets/javascripts/mumuki_laboratory/application.js +0 -1
- data/app/assets/javascripts/mumuki_laboratory/application/bridge.js +36 -10
- data/app/assets/javascripts/mumuki_laboratory/application/button.js +90 -1
- data/app/assets/javascripts/mumuki_laboratory/application/codemirror.js +1 -0
- data/app/assets/javascripts/mumuki_laboratory/application/custom-editor.js +46 -4
- data/app/assets/javascripts/mumuki_laboratory/application/discussions.js +14 -13
- data/app/assets/javascripts/mumuki_laboratory/application/kids.js +73 -36
- data/app/assets/javascripts/mumuki_laboratory/application/progress.js +3 -0
- data/app/assets/javascripts/mumuki_laboratory/application/results-renderer.js +51 -0
- data/app/assets/javascripts/mumuki_laboratory/application/submission.js +184 -35
- data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +43 -4
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kids.scss +3 -3
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kindergarten.scss +55 -0
- data/app/controllers/assets_controller.rb +1 -0
- data/app/controllers/concerns/with_authorization.rb +4 -0
- data/app/controllers/discussions_controller.rb +5 -0
- data/app/controllers/discussions_messages_controller.rb +9 -1
- data/app/controllers/exercise_solutions_controller.rb +4 -2
- data/app/helpers/application_helper.rb +9 -5
- data/app/helpers/discussions_helper.rb +30 -20
- data/app/helpers/exercise_input_helper.rb +1 -1
- data/app/helpers/icons_helper.rb +3 -3
- data/app/views/book_discussions/index.html.erb +3 -3
- data/app/views/discussions/_message.html.erb +8 -3
- data/app/views/discussions/index.html.erb +0 -1
- data/app/views/discussions/new.html.erb +33 -0
- data/app/views/discussions/show.html.erb +12 -42
- data/app/views/exercises/_read_only.html.erb +33 -6
- data/app/views/layouts/_discussions.html.erb +19 -1
- data/app/views/layouts/_test_results.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/editors/_custom.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_kids_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_problem_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_bottom.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_kindergarten.html.erb +40 -0
- data/app/views/layouts/exercise_inputs/layouts/{_input_kids.html.erb → _input_primary.html.erb} +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_right.html.erb +1 -1
- data/app/views/layouts/modals/_kids_context.html.erb +1 -8
- data/config/routes.rb +2 -1
- data/lib/mumuki/laboratory/controllers/results_rendering.rb +1 -2
- data/lib/mumuki/laboratory/locales/en.yml +5 -0
- data/lib/mumuki/laboratory/locales/es.yml +5 -0
- data/lib/mumuki/laboratory/locales/pt.yml +5 -2
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/confirmations_controller_spec.rb +1 -1
- data/spec/controllers/exercise_solutions_controller_spec.rb +41 -6
- data/spec/dummy/db/schema.rb +11 -1
- data/spec/features/exercise_flow_spec.rb +1 -1
- data/spec/helpers/breadcrumbs_helper_spec.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/AUTHORS +16 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/Gemfile +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/LICENSE +661 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/README.md +159 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/Rakefile +35 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/api_client.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/application_record.rb +128 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/assignment.rb +243 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/avatar.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/book.rb +78 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/chapter.rb +33 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/complement.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/assistable.rb +25 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/container.rb +34 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/contextualization.rb +137 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/disabling.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/friendly_name.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/guide_container.rb +61 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/navigation/parent_navigation.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/navigation/siblings_navigation.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/navigation/terminal_navigation.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/submittable/confirmable.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/submittable/queriable.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/submittable/questionable.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/submittable/solvable.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/submittable/submittable.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/submittable/triable.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/topic_container.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_assignments.rb +33 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_case_insensitive_search.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_description.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_discussion_creation.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_discussion_creation/subscription.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_discussion_creation/upvote.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_discussion_status.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_discussions.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_editor.rb +39 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_expectations.rb +33 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_language.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_layout.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_locale.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_messages.rb +22 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_name.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_number.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_profile.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_progress.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_randomizations.rb +43 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_reminders.rb +74 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_scoped_queries.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_scoped_queries/filter.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_scoped_queries/page.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_scoped_queries/sort.rb +52 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_slug.rb +61 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_usages.rb +42 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/concerns/with_user_navigation.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/content.rb +35 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/course.rb +62 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/discussion.rb +176 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/event.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exam.rb +207 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exam/passing_criterion.rb +53 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exam_authorization.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise.rb +255 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise/challenge.rb +25 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise/interactive.rb +41 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise/playground.rb +23 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise/problem.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise/queriable_challenge.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/exercise/reading.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/guide.rb +131 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/indicator.rb +77 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/invitation.rb +67 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/language.rb +128 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/lesson.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/message.rb +92 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/organization.rb +183 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/progress.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/stats.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/subscription.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/topic.rb +63 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/upvote.rb +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/usage.rb +33 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/user.rb +208 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/app/models/with_stats.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/bin/rails +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141120231135_create_exercises.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141120231735_create_submissions.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141121001134_add_status_to_submission.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141121013100_add_result_to_submission.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141121122921_add_language_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141124023403_create_users.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141124032114_add_user_to_submission.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141207235356_add_submissions_count_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141208005050_add_author_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141208005125_rename_user_to_submitter.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141212044717_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141212044718_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141212044719_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141212044720_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141221213109_create_exercise_repos.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141221215035_add_origin_to_exercise.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141225034553_rename_exercise_repo_to_guide.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141225143218_rename_github_url_to_github_repository.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141225195510_create_imports.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141225211350_add_status_to_import.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141226010922_add_result_to_import.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141228151351_change_exercise_description_to_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141231074400_create_languages.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141231191842_change_language_column_type.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141231192030_rename_author_to_plugin_author.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20141231234940_increment_language_id.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150108014005_add_locale_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150111160450_add_uniques_to_languages.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150125042217_add_test_syntax_hint_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150125051529_add_hint_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150126213310_devise_create_admin_users.rb +42 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150126213316_create_active_admin_comments.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150315072037_add_description_to_guide.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150317052723_remove_language_author.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150317053307_remove_language_hint.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150321150030_add_extra_code_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150328211331_create_expectations.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150329163753_add_email_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150330020553_add_expectation_results_to_submission.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150405231013_create_exports.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150405232603_add_default_guide_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150406020152_add_last_submission_date_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150407225356_add_unique_index_to_users.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150408020712_add_status_to_export.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150408022654_add_commiter_to_export.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150411215351_change_guide_description_to_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150412042959_add_committer_to_import.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150412201651_remove_default_guide_from_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150415053559_add_image_url_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150415211341_add_position_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150415234515_create_relationships.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150417052238_add_original_id_format_to_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150418055334_add_locale_and_language_to_guide.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150424180136_add_guides_users_association_tables.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150428195229_add_guides_suggestions.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150507215646_remove_relationship.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150508015148_create_api_tokens.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150509191428_add_name_to_token.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150512235847_add_feedback_to_submission.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150513203636_create_categories.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150513204102_create_starting_points.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150517074730_add_extra_code_to_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150518174912_add_language_output_visibility_flag.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150518185508_add_content_type_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150519131033_set_default_locale_for_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150519174628_remove_language_name_uniq.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150519220307_rename_api_token_columns.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150520011404_convert_starting_point_into_path.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150529135324_add_corollary_to_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150529141430_add_corollary_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150531164450_add_test_extension_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150603003459_remove_language_extension_uniq.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150603020457_remove_guide_name_uniq.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150605065543_add_highlight_mode.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150614173852_add_learning_flag.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150614180512_add_beta_flag.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150614191257_add_last_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150620181839_add_layout_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150701030644_add_unique_to_language_name_index.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150701212609_add_test_results_to_submission.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150708212022_add_position_to_category.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150708212836_change_category_description_to_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150713120916_add_expectations_column_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150714000532_remove_expectations_relation.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150722003532_create_event_subscribers.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150722030820_create_solutions.rb +16 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150722142019_add_submissions_count_to_solution.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150723052640_add_submission_id_to_solution.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150724062215_add_language_description.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150724062233_add_category_links.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150724062249_add_category_long_description.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150819194207_convert_submissions_into_solutions.rb +34 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150819202310_remove_submissions.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150826023647_create_friendly_id_slugs.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150826023757_add_slug_to_guides.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150826024859_add_slug_to_exercises.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150828013106_add_remember_me_token_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150829211550_add_queriable_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150829215524_add_expectations_column_to_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20150905214532_rename_exercise_title_to_name.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151001143118_rename_solution_to_assignment.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151001183858_rename_assignment_content_to_solution.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151003003856_add_type_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151020145904_remove_guide_git_information.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151104163433_create_tenants.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151104172241_create_path_rules.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151104173956_remove_guide_position.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151104220859_remove_path_from_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151107232242_move_slug_to_path_rule.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151108173838_remove_slugs.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151108182857_remove_act_as_taggable_taggings.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151108183319_add_tags_array.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151206072741_rename_guide_extra_code_to_extra.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151208224736_rename_path_rule_to_chapter_guide.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151208224907_rename_category_to_chapter.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151208225503_rename_chapter_position_to_number.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151208231749_rename_chapter_guide_path_to_chapter.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151208233707_rename_url_to_slug.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151209021925_add_locale_to_tenant.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151210204646_remove_language_extensions.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151211032811_drop_collaborators.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151211033000_drop_contributors.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151211034943_remove_authors.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151211035206_add_contact_email_to_tenant.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151218172557_drop_import.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151222153838_add_default_content_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151223014138_change_language_icon_url_into_devicon_id.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151224174248_remove_original_id.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20151229153839_replace_learning_with_type_in_guides.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160108191156_rename_extra_code.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160108215313_remove_unique_index_from_users.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160119024542_add_preface_to_tenant.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160119040351_rename_tenant_to_book.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160119191508_rename_position_to_number.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160120171336_add_type_to_event_suscriber.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160205184243_add_bibliotheca_id_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160214191548_required_bibliotheca_id.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160222165337_add_hidden_flag_to_extra_code.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160222192958_rename_chapter_guide_to_lesson.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160307184203_add_prompt_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160331210507_add_comment_model.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160401142104_add_readed_to_comment.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160404214826_change_readed_to_read.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160405184624_change_submission_id_to_string.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160412193123_change_content_comment_to_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160414150800_remove_tenant_subscriber.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160426171156_add_new_expectations_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160427195306_create_organizations.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160427223805_add_chapter_book.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160427234538_create_topics.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160427235605_add_topic_to_chapter.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160428162753_add_topic_id_to_lesson.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160428175230_create_exams.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160428224823_add_duration_to_exam.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160429174901_add_start_end_time_to_exam.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160429181825_add_exam_user.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160430225048_create_complements.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160430231035_remove_chapter_lesson.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160430235331_remove_chapter_name_description.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160430235656_remove_chapter_locale_image_url.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160501003355_add_long_description_to_topic.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160501071847_create_usages.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506012945_add_slug_to_topic_and_book.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506035230_remove_slug_from_lesson.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506041446_rename_preface_to_description.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506172239_remove_event_subscriber.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506175610_remove_api_tokens.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506181152_remove_admin_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160506182333_remove_admin_comments.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160510183137_add_private_to_organization.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160512134321_add_organization_image.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160516191936_add_stateful_console_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160517215229_add_classroom_idto_exams.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160518212552_rename_exam_users_to_exam_authorization.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160518213912_add_user_start_data_in_exam.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160519045220_add_id_to_exam_authorizations.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160520141716_remove_chapter_links_and_long_description.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160520153115_change_exam_classroom_id_to_string.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160526172026_remove_not_null_constraint_exam_duration.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160526182119_add_metadata_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160617175235_add_last_organization_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160617195350_change_metadata_to_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160701195105_add_login_methods_to_organization.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160705160244_add_manual_evaluation_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160715001254_rename_test_runner_url.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160729194600_change_default_content_to_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160812003350_change_default_login_methods.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160815225314_rename_long_description_to_appendix.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160819181024_make_organization_private_by_default.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160830160937_add_authoring_information_to_guide.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20160907010315_remove_exercise_slug.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161004202742_add_editor_to_problem.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161018142147_add_language_extension.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161107171305_remove_devicon_column_from_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161222182015_rename_uid_to_social_id.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161222182724_add_uid_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161226181932_remove_metadata_from_users.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161230055953_add_not_null_constraint_to_uid_in_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20161231224116_add_permissions_to_user.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170125185012_add_new_fields_on_organization.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170207154702_add_index_to_uid.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170224040846_create_invitations.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170224061531_make_tos_type_text.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170301160253_rename_invitation_slug_to_code.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170330145157_rename_comment_to_messages.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170407190910_add_has_messages_flag_to_assignment.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170526191251_add_community_link_to_organizations.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170526204944_add_has_messages_to_organizations.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170601181759_rename_has_messages_to_raise_hand_enabled_in_organization.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170608033403_remove_has_messages_from_assignment.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170608044038_remove_messages_exercise_id.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170608154055_remove_message_type_column.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170612173212_add_first_name_and_last_name_to_user.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170621222902_introduce_settings_and_themes.rb +40 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170818185127_add_guide_slug_constraint.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20170830020507_change_invitation_expiration_date_type.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20171003204152_add_goal_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20171003204209_add_queries_to_assignment.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20171004134607_add_triable_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20171024182244_add_devicon_and_comment_type_to_language.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20171109181818_add_manual_evaluation_commend_and_submission_id_index_in_assignment.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20171229042201_add_assets_to_language.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180117014110_add_custom_editor_assets_to_language.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180123174410_add_initial_and_final_states_to_exercises.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180123180836_add_accepts_reminders_to_users.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180129142749_add_api_client.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180130194923_add_last_reminded_date_to_users.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180130204935_add_course.rb +16 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180307150148_add_failed_submissions_count_to_assignments.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180323125804_remove_user_name.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180323140943_remove_unused_omniauth_fields.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180326224511_remove_book_ids.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180402015405_remove_course_uid.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180504173548_create_discussions.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180504185845_add_discussion_id_to_message.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180526141344_add_tips_rules_to_exercise.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180605143727_add_submission_to_discussion.rb +16 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180611190239_add_randomizations_to_exercises.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180619182555_create_subscriptions.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180702153442_create_upvotes.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180702175220_add_upvotes_count_to_discussions.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180704150839_rename_assignment_status_to_submission_status.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180725145801_add_submissions_caps_to_exams.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20180802190437_add_approved_to_messages.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181004173216_add_free_form_editor_to_exercises.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181014233438_remove_non_null_constraint_from_permissions.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181016203853_add_test_extension_back.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181021151505_add_id_format_back.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181022043658_add_private_flag_for_guides.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181022220518_add_teacher_info_to_guide.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181101180652_add_unique_index_to_organizations_name.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181105152420_remove_contact_email_from_book.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181113183935_rename_guide_contributors_to_collaborators.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181114201620_add_test_template_to_languages.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181117190241_add_feedback_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181121165956_rename_choices_column.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20181210131824_convert_course_invitation_into_fk.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190123180139_add_sources_section.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190123180147_add_learn_more_section.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190312152901_add_content_fk.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190326152631_add_settings_to_content.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190404181724_add_organization_to_discussion.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190506180102_add_multifile_to_languages.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190530173142_add_organization_to_assignment.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190702003600_add_loading_flags_to_language.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190702182407_add_new_profile_fields.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190724190355_add_settings_to_languages.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190905174934_add_submitted_at_to_assignments.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190918134321_remove_new_expectations.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190918140026_add_custom_expectations.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20190929180601_add_expectations_to_language.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20191022180238_remove_choice_values_from_exercises.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20191029200548_create_indicators.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20191105171244_add_parent_to_assignments.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20191211153004_add_dirtiness_to_indicators.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20191217184525_add_progress_fields_to_indicators.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200127142401_add_private_to_topics_and_books.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200213175736_add_verified_names_to_users.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200312181842_add_results_hidden_for_choices_to_exam.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200508191543_create_avatars.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200518135658_add_avatar_to_users.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200527180729_add_disabled_at_to_users.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200601203033_add_course_to_exam.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200605161350_add_passing_criterions_to_exam.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200608132959_add_progressive_display_lookahead_to_organizations.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200702165503_add_messages_count_to_discussion.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200728162727_add_not_actually_a_question_field_to_messages.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200728163038_add_requires_moderator_response_to_discussions.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/db/migrate/20200731081757_add_last_moderator_access_fields_to_discussion.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain.rb +60 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/area.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/engine.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/evaluation.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/evaluation/automated.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/evaluation/manual.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/blocked_forum_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/disabled_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/disabled_organization_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/forbidden_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/gone_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/not_found_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/unauthorized_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/exceptions/unprepared_organization_error.rb +2 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/extensions.rb +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/extensions/array.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/extensions/hash.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/extensions/module.rb +17 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/extensions/string.rb +73 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/api_client_factory.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/assignments_factory.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/book_factory.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/chapter_factory.rb +17 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/complement_factory.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/course_factory.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/discussion_factory.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/exam_factory.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/exercise_factory.rb +84 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/guide_factory.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/invitation_factory.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/lesson_factory.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/login_settings_factory.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/message_factory.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/organization_factory.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/topic_factory.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/usage_factory.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/factories/user_factory.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/file.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/helpers.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/helpers/course.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/helpers/organization.rb +77 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/helpers/user.rb +109 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/locales/activerecord/en.yml +30 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/locales/activerecord/es.yml +59 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/locales/activerecord/pt.yml +30 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/locales/console_submission/en.yml +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/locales/console_submission/es.yml +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/locales/console_submission/pt.yml +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/organization.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/organization/profile.rb +39 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/organization/settings.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/organization/theme.rb +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/seed.rb +33 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status.rb +72 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/discussion/closed.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/discussion/discussion.rb +48 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/discussion/opened.rb +23 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/discussion/pending_review.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/discussion/solved.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/aborted.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/errored.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/failed.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/manual_evaluation_pending.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/passed.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/passed_with_warnings.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/pending.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/running.rb +15 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/skipped.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/status/submission/submission.rb +45 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/store.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/store/bibliotheca.rb +29 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/store/github.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/store/github/exercise_schema.rb +40 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/store/github/guide_schema.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/store/thesaurus.rb +85 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/base.rb +63 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/confirmation.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/console_submission.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/persistent_submission.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/query.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/question.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/solution.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/submission/try.rb +20 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/syncable.rb +91 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/syncable/with_resource_fields.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/version.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/lib/mumuki/domain/workspace.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/mumuki-domain.gemspec +78 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/Rakefile +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/bin/bundle +3 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/bin/rails +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/bin/rake +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/bin/setup +38 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/bin/update +29 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config.ru +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config/application.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config/boot.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config/database.travis.yml +4 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config/database.yml +13 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config/environment.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/config/environments/test.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/dummy/db/schema.rb +398 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/evaluation_helper.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/lib/bibliotheca_store_spec.rb +73 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/lib/organization_helpers_spec.rb +240 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/lib/thesaurus_store_spec.rb +329 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/lib/user_helpers_spec.rb +168 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/api_client_spec.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/assignment_spec.rb +490 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/book_import_spec.rb +70 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/book_spec.rb +324 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/course_spec.rb +67 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/discussion_spec.rb +264 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/event_generation_spec.rb +189 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/event_publishing_spec.rb +36 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/exam_spec.rb +205 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/exercise_spec.rb +589 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/guide_import_spec.rb +317 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/guide_spec.rb +264 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/hash_spec.rb +17 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/indicator_spec.rb +101 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/interactive_spec.rb +144 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/invitation_spec.rb +26 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/language_spec.rb +56 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/lesson_spec.rb +90 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/message_spec.rb +87 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/navigation_spec.rb +78 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/organization_spec.rb +247 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/playground_spec.rb +23 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/problem_spec.rb +91 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/query_spec.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/question_spec.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/reading_spec.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/solution_spec.rb +142 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/stats_spec.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/status_spec.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/string_spec.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/topic_spec.rb +57 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/usage_spec.rb +82 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/user_changed_spec.rb +44 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/user_spec.rb +359 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/models/with_expectations_spec.rb +62 -0
- data/vendor/bundle/ruby/2.6.0/bundler/gems/mumuki-domain-cb7a9018bb94/spec/spec_helper.rb +57 -0
- metadata +530 -9
- data/app/views/layouts/modals/_new_discussion.html.erb +0 -27
- data/vendor/assets/javascripts/hotjar.js +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d60f8e4e5e65ba9fbec1d6faa38f76553495da9143ddd468b5d03f9e44a82c13
|
4
|
+
data.tar.gz: 59691b467d9f217fd42c114965e7c8111f8ffc636931b20b08275df30a533410
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2728b431baba6b407f648d6adf0315288e4644f0672c6f9144b9c67bb02d9f3d4213aaa5e70016a0b0803e2bbf6d6abff5cab16b9924c3d8da2d18e4599736a8
|
7
|
+
data.tar.gz: 2b94fcdab8698adfecc7dd579d24aa99941e49f4ff92f061cd549ceedf5d040962a83b7cfc9efceffa94251416222473586a5580887a0e7ef9e0f841781853d3
|
data/README.md
CHANGED
@@ -158,7 +158,9 @@ which are granted to be safe and stable.
|
|
158
158
|
* `.mu-kids-submit-button`
|
159
159
|
* `.mu-multiple-scenarios`
|
160
160
|
* `.mu-scenarios`
|
161
|
+
* `.mu-submit-button`
|
161
162
|
* `#mu-actual-state-text`
|
163
|
+
* `#mu-${languageName}-custom-editor`
|
162
164
|
* `#mu-custom-editor-default-value`
|
163
165
|
* `#mu-custom-editor-extra`
|
164
166
|
* `#mu-custom-editor-test`
|
@@ -170,7 +172,6 @@ which are granted to be safe and stable.
|
|
170
172
|
* `.mu-kids-gbs-board-initial`: Use `.mu-initial-state` instead
|
171
173
|
* `.mu-state-final`: Use `.mu-final-state` instead
|
172
174
|
* `.mu-state-initial`: Use `.mu-initial-state` instead
|
173
|
-
* `#kids-context`: Use `.mu-kids-context` instead
|
174
175
|
* `#kids-results-aborted`: Use `.mu-kids-results-aborted` instead
|
175
176
|
* `#kids-results`: Use `.mu-kids-results` instead
|
176
177
|
|
@@ -178,6 +179,8 @@ which are granted to be safe and stable.
|
|
178
179
|
|
179
180
|
* `mumuki.bridge.Laboratory`
|
180
181
|
* `.runTests`
|
182
|
+
* `mumuki.CustomEditor`
|
183
|
+
* `addSource`
|
181
184
|
* `mumuki.editor`
|
182
185
|
* `formatContent`
|
183
186
|
* `reset`
|
@@ -191,6 +194,7 @@ which are granted to be safe and stable.
|
|
191
194
|
* `scaleBlocksArea`
|
192
195
|
* `scaleState`
|
193
196
|
* `showResult`
|
197
|
+
* `showContext`
|
194
198
|
* `mumuki.renderers`
|
195
199
|
* `SpeechBubbleRenderer`
|
196
200
|
* `renderSpeechBubbleResultItem`
|
@@ -205,6 +209,9 @@ which are granted to be safe and stable.
|
|
205
209
|
* `setUpDeleteFiles`
|
206
210
|
* `setUpDeleteFile`
|
207
211
|
* `updateButtonsVisibility`
|
212
|
+
* `mumuki.submission`
|
213
|
+
* `processSolution`
|
214
|
+
* `registerContentSyncer`
|
208
215
|
* `mumuki.version`
|
209
216
|
|
210
217
|
### Bridge Response Format
|
@@ -213,7 +220,6 @@ which are granted to be safe and stable.
|
|
213
220
|
{
|
214
221
|
"status": "passed|passed_with_warnings|failed",
|
215
222
|
"guide_finished_by_solution": "boolean",
|
216
|
-
"class_for_progress_list_item": "string",
|
217
223
|
"html": "string",
|
218
224
|
"remaining_attempts_html": "string" ,
|
219
225
|
"title_html": "string", // kids-only
|
@@ -243,6 +249,182 @@ which are granted to be safe and stable.
|
|
243
249
|
2. Laboratory Kids Layout Initialization
|
244
250
|
3. Runner Editor HTML
|
245
251
|
|
252
|
+
## Custom editors
|
253
|
+
|
254
|
+
Mumuki provides several editor types: code editors, multiple choice, file upload, and so on.
|
255
|
+
However, some runners will require custom editors in order to provide better ways of entering
|
256
|
+
solutions.
|
257
|
+
|
258
|
+
The process to do so is not difficult, but tricky, since there are a few hooks you need to implement. Let's look at them:
|
259
|
+
|
260
|
+
### 1. Before state: adding layout assets
|
261
|
+
|
262
|
+
If you need to provide a custom editor, chances are that you also need to provide assets to augment the layout, e.g. providing ways
|
263
|
+
to render some custom components on descriptions or corollaries. That code will be included first.
|
264
|
+
|
265
|
+
In order to do that, add to your runner the layout html, css and js code. Layout code has no further requirements. It can customize any public selector previously.
|
266
|
+
|
267
|
+
Although it is not required, it is recommended that your layout code works with any of the mumuki layouts:
|
268
|
+
|
269
|
+
* `input_right`
|
270
|
+
* `input_bottom`
|
271
|
+
* `input_primary`
|
272
|
+
* `input_kindergarten`
|
273
|
+
|
274
|
+
:warning: Not all the selectors will be available to all layouts.
|
275
|
+
|
276
|
+
Then expose code in the `MetadataHook`:
|
277
|
+
|
278
|
+
```ruby
|
279
|
+
class ... < Mumukit::Hook
|
280
|
+
def metadata
|
281
|
+
{
|
282
|
+
layout_assets_urls: {
|
283
|
+
js: [
|
284
|
+
'assets/....'
|
285
|
+
],
|
286
|
+
css: [
|
287
|
+
'assets/....'
|
288
|
+
],
|
289
|
+
html: [
|
290
|
+
'assets/....'
|
291
|
+
]
|
292
|
+
}
|
293
|
+
}
|
294
|
+
end
|
295
|
+
end
|
296
|
+
```
|
297
|
+
|
298
|
+
Finally, it is _recommended_ that you layout code calls `mumuki.assetsLoadedFor('layout')` when fully loaded.
|
299
|
+
|
300
|
+
That's it!
|
301
|
+
|
302
|
+
### 2. Adding custom editor assets
|
303
|
+
|
304
|
+
The process for registering custom editors is more involving.
|
305
|
+
|
306
|
+
#### 2.1 Add your assets and expose them
|
307
|
+
|
308
|
+
Add your js, css and html assets to your runner, and expose them in `MetadataHook`:
|
309
|
+
|
310
|
+
```ruby
|
311
|
+
class ... < Mumukit::Hook
|
312
|
+
def metadata
|
313
|
+
{
|
314
|
+
editor_assets_urls: {
|
315
|
+
js: [
|
316
|
+
'assets/....'
|
317
|
+
],
|
318
|
+
css: [
|
319
|
+
'assets/....'
|
320
|
+
],
|
321
|
+
html: [
|
322
|
+
'assets/....'
|
323
|
+
]
|
324
|
+
}
|
325
|
+
}
|
326
|
+
end
|
327
|
+
end
|
328
|
+
```
|
329
|
+
|
330
|
+
These assets will only be loaded when the editor `custom` is used.
|
331
|
+
|
332
|
+
#### 2.2 Add your components to the custom editor
|
333
|
+
|
334
|
+
Using JavaScript, append your components the custom-editor root, which can be found using the following selectors:
|
335
|
+
|
336
|
+
* `mu-${languageName}-custom-editor`
|
337
|
+
* `#mu-${languageName}-custom-editor`
|
338
|
+
* `.mu-${languageName}-custom-editor`
|
339
|
+
|
340
|
+
```javascript
|
341
|
+
$('#mu-mylang-custom-editor').append(/* ... */)
|
342
|
+
```
|
343
|
+
|
344
|
+
#### 2.3 Extract the test
|
345
|
+
|
346
|
+
If necessary, read the test definition from `#mu-custom-editor-test`, and plump into your custom components
|
347
|
+
|
348
|
+
```javascript
|
349
|
+
const test = $('#mu-custom-editor-test').val()
|
350
|
+
//...use test...
|
351
|
+
```
|
352
|
+
|
353
|
+
#### 2.4 Exposing your content
|
354
|
+
|
355
|
+
Before sending a submission, mumuki needs to be able to your read you editor components
|
356
|
+
contents. There are two different approaches:
|
357
|
+
|
358
|
+
* Register a syncer that writes `#mu-custom-editor-value` or any other custom editor selectors
|
359
|
+
* Add one or more content sources
|
360
|
+
|
361
|
+
```javascript
|
362
|
+
// simplest method - you can register just one
|
363
|
+
mumuki.submission.registerContentSyncer(() => {
|
364
|
+
// ... write here your custom component content...
|
365
|
+
$('#mu-custom-editor-value').val(/* ... */);
|
366
|
+
});
|
367
|
+
|
368
|
+
// alternate method
|
369
|
+
// you can register many sources
|
370
|
+
mumuki.CustomEditor.addSource({
|
371
|
+
getContent() {
|
372
|
+
return { name: "solution[content]", value: /* ... */ } ;
|
373
|
+
}
|
374
|
+
});
|
375
|
+
```
|
376
|
+
|
377
|
+
#### 2.5 Optional: Sending your solution to the server programmatically
|
378
|
+
|
379
|
+
Your solution will be automatically sent to the client when the submit button is pressed. However,
|
380
|
+
if you need to trigger submission process programmatically, call `mumuki.submission.processSolution`:
|
381
|
+
|
382
|
+
```javascript
|
383
|
+
mumuki.submission.processSolution({solution: {content: /* ... */}});
|
384
|
+
```
|
385
|
+
|
386
|
+
#### 2.6 Optional: customizing your submit button
|
387
|
+
|
388
|
+
You can alternatively override the default submit button UI and behaviour, by replacing it with a custom component. In order to
|
389
|
+
do that, override the `.mu-submit-button` or the kids-specific `.mu-kids-submit-button`:
|
390
|
+
|
391
|
+
```javascript
|
392
|
+
$(".mu-submit-button").html(/* ... */);
|
393
|
+
```
|
394
|
+
|
395
|
+
However, doing this is tricky, since you will need to manually update the UI and connecting to the server. See:
|
396
|
+
|
397
|
+
* `mumuki.kids.showResult`
|
398
|
+
* `mumuki.bridge.Laboratory.runTests`
|
399
|
+
* `mumuki.updateProgressBarAndShowModal`
|
400
|
+
|
401
|
+
#### 2.7 Register kids scalers
|
402
|
+
|
403
|
+
Kids layouts have some special areas:
|
404
|
+
|
405
|
+
* _state area_: its display initial and/or final states of the exercise
|
406
|
+
* _blocks area_: a workspace that contains the building blocks of the solution - which are not necessary programming or blockly blocks, actually
|
407
|
+
|
408
|
+
If you want to support kids layouts, you **need** to register scalers that will be called when device is resized. Skip this step otherwise.
|
409
|
+
|
410
|
+
```javascript
|
411
|
+
mumuki.kids.registerStateScaler(($state, fullMargin, preferredWidth, preferredHeight) => {
|
412
|
+
// ... resize your components ...
|
413
|
+
});
|
414
|
+
|
415
|
+
mumuki.kids.registerBlocksAreaScaler(($blocks) => {
|
416
|
+
// ... resize your components ...
|
417
|
+
});
|
418
|
+
```
|
419
|
+
|
420
|
+
#### 2.8 Notify when your assets have been loaded
|
421
|
+
|
422
|
+
In order to remove loading spinners, you will need to call `mumuki.assetsLoadedFor` when your code is ready.
|
423
|
+
|
424
|
+
```javascript
|
425
|
+
mumuki.assetsLoadedFor('editor');
|
426
|
+
```
|
427
|
+
|
246
428
|
## Transparent Navigation API Docs
|
247
429
|
|
248
430
|
In order to be able to link content, laboratory exposes slug-based routes that will redirect to the actual
|
@@ -1,3 +1,11 @@
|
|
1
|
+
/**
|
2
|
+
* @typedef {{status: string, test_results: [{status: string, title: string}]}} ClientResult
|
3
|
+
*/
|
4
|
+
|
5
|
+
/**
|
6
|
+
* @typedef {{solution: object, client_result?: ClientResult}} Submission
|
7
|
+
*/
|
8
|
+
|
1
9
|
var mumuki = mumuki || {};
|
2
10
|
|
3
11
|
(function (mumuki) {
|
@@ -19,19 +27,28 @@ var mumuki = mumuki || {};
|
|
19
27
|
return lastSubmission.result && lastSubmission.result.status !== 'aborted';
|
20
28
|
}
|
21
29
|
|
22
|
-
function sendNewSolution(
|
30
|
+
function sendNewSolution(submission){
|
23
31
|
var token = new mumuki.CsrfToken();
|
24
32
|
var request = token.newRequest({
|
25
33
|
type: 'POST',
|
26
34
|
url: window.location.origin + window.location.pathname + '/solutions' + window.location.search,
|
27
|
-
data:
|
35
|
+
data: submission
|
28
36
|
});
|
29
37
|
|
30
|
-
return $.ajax(request).done(function (result) {
|
31
|
-
lastSubmission = { content: solution, result: result };
|
38
|
+
return $.ajax(request).then(preRenderResult).done(function (result) {
|
39
|
+
lastSubmission = { content: {solution: submission.solution}, result: result };
|
32
40
|
});
|
33
41
|
}
|
34
42
|
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Pre-renders some html parts of submission UI
|
46
|
+
* */
|
47
|
+
function preRenderResult(result) {
|
48
|
+
result.class_for_progress_list_item = mumuki.renderers.progressListItemClassForStatus(result.status, true)
|
49
|
+
return result;
|
50
|
+
}
|
51
|
+
|
35
52
|
mumuki.load(function () {
|
36
53
|
lastSubmission = {};
|
37
54
|
});
|
@@ -42,8 +59,12 @@ var mumuki = mumuki || {};
|
|
42
59
|
// Public API
|
43
60
|
// ==========
|
44
61
|
|
45
|
-
|
46
|
-
|
62
|
+
/**
|
63
|
+
* Runs tests for the current exercise using the given submission
|
64
|
+
* content.
|
65
|
+
*
|
66
|
+
* @param {object} content the content object
|
67
|
+
* */
|
47
68
|
runTests: function(content) {
|
48
69
|
return this._submitSolution({ solution: content });
|
49
70
|
},
|
@@ -52,13 +73,18 @@ var mumuki = mumuki || {};
|
|
52
73
|
// Private API
|
53
74
|
// ===========
|
54
75
|
|
55
|
-
|
56
|
-
|
76
|
+
/**
|
77
|
+
* Sends a solution object
|
78
|
+
*
|
79
|
+
* @param {Submission} submission the submission object
|
80
|
+
*/
|
81
|
+
_submitSolution: function (submission) {
|
82
|
+
if(lastSubmissionFinishedSuccessfully() && sameAsLastSolution(submission)){
|
57
83
|
return $.Deferred().resolve(lastSubmission.result);
|
58
84
|
} else {
|
59
|
-
return sendNewSolution(
|
85
|
+
return sendNewSolution(submission);
|
60
86
|
}
|
61
|
-
}
|
87
|
+
}
|
62
88
|
};
|
63
89
|
|
64
90
|
mumuki.bridge = {
|
@@ -1,3 +1,20 @@
|
|
1
|
+
/**
|
2
|
+
* A generic button component.
|
3
|
+
*
|
4
|
+
* It exposes three APIs: low level, common and high level.
|
5
|
+
*
|
6
|
+
* The low level allows you to control all aspects of the button, but it is legacy
|
7
|
+
* and should not be used in new code.
|
8
|
+
*
|
9
|
+
* The common API offers the start function, which can be used under both the low
|
10
|
+
* and high level APIs to configure the initial on-click button handler.
|
11
|
+
*
|
12
|
+
* The high level allows to implement a simple state-like button handling
|
13
|
+
* that goes as follow:
|
14
|
+
*
|
15
|
+
* 1. simple flow: {init} -start-> {enabled} -wait-> {waiting} -continue-> {enabled}
|
16
|
+
* 2. extended flow: {init} -start-> {enabled} -wait-> {waiting} -ready-> {ready-to-continue} -continue-> {enabled}
|
17
|
+
*/
|
1
18
|
mumuki.Button = class {
|
2
19
|
|
3
20
|
constructor($button, $container) {
|
@@ -6,10 +23,78 @@ mumuki.Button = class {
|
|
6
23
|
this.originalContent = $button.html();
|
7
24
|
}
|
8
25
|
|
26
|
+
// ==========
|
27
|
+
// Common API
|
28
|
+
// ==========
|
29
|
+
|
30
|
+
/**
|
31
|
+
* Initializes the button, configuring the action that will be called
|
32
|
+
* before wating, moving it into the {enabled} state.
|
33
|
+
*/
|
34
|
+
start(main) {
|
35
|
+
this.main = (e) => {
|
36
|
+
e.preventDefault();
|
37
|
+
main();
|
38
|
+
};
|
39
|
+
this.$button.on('click', this.main)
|
40
|
+
}
|
41
|
+
|
42
|
+
// ==============
|
43
|
+
// High level API
|
44
|
+
// ==============
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Moves this button into the {waiting} state,
|
48
|
+
* disabling its usage and updating its legend
|
49
|
+
*/
|
50
|
+
wait() {
|
51
|
+
this.$button.off('click');
|
52
|
+
|
53
|
+
this.setWaiting();
|
54
|
+
}
|
55
|
+
|
56
|
+
/**
|
57
|
+
* Moves this button into {ready-to-continue} state,
|
58
|
+
* and sets the given callback to be called before continue.
|
59
|
+
*
|
60
|
+
* Going through this state is optional.
|
61
|
+
*/
|
62
|
+
ready(secondary) {
|
63
|
+
this.$button.off('click');
|
64
|
+
|
65
|
+
this.undisable();
|
66
|
+
this.setRetryText();
|
67
|
+
|
68
|
+
this.$button.on('click', (e) => {
|
69
|
+
e.preventDefault();
|
70
|
+
secondary();
|
71
|
+
});
|
72
|
+
}
|
73
|
+
|
74
|
+
/**
|
75
|
+
* Puts this button back in the {enabled} state,
|
76
|
+
* making it ready-to-use.
|
77
|
+
*/
|
78
|
+
continue() {
|
79
|
+
this.$button.off('click');
|
80
|
+
|
81
|
+
this.enable();
|
82
|
+
|
83
|
+
this.$button.on('click', this.main)
|
84
|
+
}
|
85
|
+
|
86
|
+
// =============
|
87
|
+
// Low level API
|
88
|
+
// =============
|
89
|
+
|
9
90
|
disable () {
|
10
91
|
this.$container.attr('disabled', 'disabled');
|
11
92
|
}
|
12
93
|
|
94
|
+
undisable() {
|
95
|
+
this.$container.removeAttr('disabled');
|
96
|
+
}
|
97
|
+
|
13
98
|
setWaiting () {
|
14
99
|
this.preventClick();
|
15
100
|
this.setWaitingText();
|
@@ -17,13 +102,17 @@ mumuki.Button = class {
|
|
17
102
|
|
18
103
|
enable () {
|
19
104
|
this.setOriginalContent();
|
20
|
-
this
|
105
|
+
this.undisable();
|
21
106
|
}
|
22
107
|
|
23
108
|
setWaitingText () {
|
24
109
|
this.$button.html('<i class="fa fa-refresh fa-spin"></i> ' + this.$button.attr('data-waiting'));
|
25
110
|
}
|
26
111
|
|
112
|
+
setRetryText() {
|
113
|
+
this.$button.html('<i class="fa fa-undo"></i>');
|
114
|
+
}
|
115
|
+
|
27
116
|
setOriginalContent () {
|
28
117
|
this.$button.html(this.originalContent);
|
29
118
|
}
|