mumuki-laboratory 9.8.1 → 9.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/mumuki_laboratory/application/messages.js +1 -30
  3. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +32 -34
  4. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_dropdown.scss +11 -0
  5. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_editor.scss +3 -0
  6. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_faqs.scss +1 -1
  7. data/app/controllers/application_controller.rb +1 -1
  8. data/app/controllers/messages_controller.rb +2 -5
  9. data/app/controllers/users_controller.rb +38 -1
  10. data/app/helpers/application_helper.rb +6 -2
  11. data/app/helpers/discussions_helper.rb +11 -4
  12. data/app/helpers/exam_registration_helper.rb +0 -4
  13. data/app/helpers/icons_helper.rb +1 -1
  14. data/app/helpers/menu_bar_helper.rb +7 -3
  15. data/app/helpers/messages_helper.rb +4 -8
  16. data/app/helpers/notifications_helper.rb +13 -0
  17. data/app/helpers/profile_helper.rb +4 -0
  18. data/app/helpers/user_discussions_helper.rb +38 -0
  19. data/app/helpers/user_menu_helper.rb +4 -0
  20. data/app/mailers/user_mailer.rb +9 -1
  21. data/app/views/discussions/new.html.erb +1 -1
  22. data/app/views/layouts/_copyright.html.erb +1 -1
  23. data/app/views/layouts/_discussions.html.erb +1 -37
  24. data/app/views/layouts/_discussions_list.html.erb +38 -0
  25. data/app/views/layouts/_messages.html.erb +1 -7
  26. data/app/views/layouts/_user_menu.html.erb +1 -0
  27. data/app/views/layouts/application.html.erb +1 -1
  28. data/app/views/layouts/exercise_inputs/forms/_interactive_form.html.erb +1 -1
  29. data/app/views/layouts/exercise_inputs/forms/_problem_form.html.erb +1 -1
  30. data/app/views/layouts/exercise_inputs/read_only_editors/_code.html.erb +1 -1
  31. data/app/views/layouts/exercise_inputs/read_only_editors/_multiple_files.html.erb +4 -4
  32. data/app/views/layouts/mailer.html.erb +7 -1
  33. data/app/views/notifications/_custom.html.erb +1 -0
  34. data/app/views/notifications/_dropdown.html.erb +2 -2
  35. data/app/views/notifications/_exam_authorization_request_updated.html.erb +2 -0
  36. data/app/views/notifications/_exam_registration.html.erb +2 -1
  37. data/app/views/notifications/previews/_custom.html.erb +1 -0
  38. data/app/views/notifications/previews/_discussion.html.erb +2 -0
  39. data/app/views/notifications/previews/_exam_authorization_request_updated.html.erb +2 -0
  40. data/app/views/notifications/previews/_exam_registration.html.erb +2 -0
  41. data/app/views/notifications/previews/_message.html.erb +2 -0
  42. data/app/views/user_mailer/1st_reminder.html.erb +7 -349
  43. data/app/views/user_mailer/1st_reminder.text.erb +1 -5
  44. data/app/views/user_mailer/2nd_reminder.html.erb +7 -349
  45. data/app/views/user_mailer/2nd_reminder.text.erb +1 -5
  46. data/app/views/user_mailer/3rd_reminder.html.erb +7 -349
  47. data/app/views/user_mailer/3rd_reminder.text.erb +1 -5
  48. data/app/views/user_mailer/_mail_template.erb +336 -0
  49. data/app/views/user_mailer/certificate.html.erb +7 -335
  50. data/app/views/user_mailer/certificate.text.erb +1 -4
  51. data/app/views/user_mailer/no_submissions_reminder.html.erb +7 -349
  52. data/app/views/user_mailer/no_submissions_reminder.text.erb +1 -5
  53. data/app/views/user_mailer/notification.html.erb +1 -0
  54. data/app/views/user_mailer/notification.text.erb +6 -0
  55. data/app/views/user_mailer/notifications/_custom.html.erb +11 -0
  56. data/app/views/user_mailer/notifications/_exam_authorization_request_updated.html.erb +1 -0
  57. data/app/views/user_mailer/notifications/_exam_registration.html.erb +7 -0
  58. data/app/views/user_mailer/notifications/exam_authorization_request_updated/_approved.html.erb +7 -0
  59. data/app/views/user_mailer/notifications/exam_authorization_request_updated/_rejected.html.erb +7 -0
  60. data/app/views/users/_basic_profile_fields.html.erb +30 -0
  61. data/app/views/users/_profile_fields.html.erb +1 -20
  62. data/app/views/users/discussions.html.erb +19 -11
  63. data/app/views/users/manage_notifications.html.erb +26 -0
  64. data/app/views/users/messages.html.erb +1 -1
  65. data/app/views/users/notifications.html.erb +54 -0
  66. data/config/routes.rb +4 -1
  67. data/lib/mumuki/laboratory/controllers/notifications.rb +2 -2
  68. data/lib/mumuki/laboratory/locales/en.yml +46 -7
  69. data/lib/mumuki/laboratory/locales/es-CL.yml +47 -7
  70. data/lib/mumuki/laboratory/locales/es.yml +48 -9
  71. data/lib/mumuki/laboratory/locales/pt.yml +45 -6
  72. data/lib/mumuki/laboratory/version.rb +1 -1
  73. data/spec/controllers/organizations_api_controller_spec.rb +6 -1
  74. data/spec/controllers/students_api_controller_spec.rb +1 -1
  75. data/spec/controllers/users_controller_spec.rb +48 -0
  76. data/spec/dummy/db/schema.rb +9 -1
  77. data/spec/features/not_found_public_flow_spec.rb +1 -1
  78. data/spec/features/notifications_flow_spec.rb +2 -1
  79. data/spec/features/profile_flow_spec.rb +1 -1
  80. data/spec/mailers/previews/user_mailer_preview.rb +45 -1
  81. metadata +136 -119
  82. data/app/views/messages/errors.html.erb +0 -1
  83. data/app/views/notifications/_discussion.html.erb +0 -1
  84. data/app/views/notifications/_exam_authorization_request.html.erb +0 -1
  85. data/app/views/notifications/_message.html.erb +0 -1
@@ -6,7 +6,7 @@ feature 'not found public on app' do
6
6
  let!(:some_orga) { create(:public_organization, name: 'someorga', profile: profile) }
7
7
 
8
8
  let(:profile) { Mumuki::Domain::Organization::Profile.parse json }
9
- let(:json) { { contact_email: 'some@email.com', locale: 'en', errors_explanations: { 404 => 'Some explanation'} } }
9
+ let(:json) { { contact_email: 'some@email.com', locale: 'en', time_zone: 'Brasilia', errors_explanations: { 404 => 'Some explanation'} } }
10
10
 
11
11
  scenario 'when route does not exist in explicit central' do
12
12
  set_subdomain_host! 'test'
@@ -22,7 +22,8 @@ feature 'Notifications Flow', organization_workspace: :test do
22
22
  let(:exam_authorization_request) { create(:exam_authorization_request, exam_registration: exam_registration, user: user) }
23
23
 
24
24
  let!(:notifications) do
25
- [exam_registration, exam_authorization_request].map { |target| create(:notification, user: user, target: target ) }
25
+ create(:notification, user: user, target: exam_registration, subject: :exam_registration )
26
+ create(:notification, user: user, target: exam_authorization_request, subject: :exam_authorization_request_updated )
26
27
  end
27
28
 
28
29
  before { visit '/' }
@@ -71,7 +71,7 @@ feature 'Profile Flow', organization_workspace: :test do
71
71
  before { set_current_user! user }
72
72
 
73
73
  context 'user with uncompleted profile after saving' do
74
- before { user.update! last_name: 'last_name', birthdate: Time.now - 20.years, gender: 'female' }
74
+ before { user.update! last_name: 'last_name', birthdate: 20.years.ago, gender: 'female' }
75
75
 
76
76
  context 'when visiting an exercise' do
77
77
  scenario 'is redirected to previous path' do
@@ -3,7 +3,51 @@ class UserMailerPreview < ActionMailer::Preview
3
3
 
4
4
  # Preview this email at http://localhost:3000/rails/mailers/user_mailer/we_miss_you_notification
5
5
  def we_miss_you_reminder
6
- UserMailer.we_miss_you_reminder(User.new, 1)
6
+ UserMailer.we_miss_you_reminder user, 1
7
7
  end
8
8
 
9
+ def custom_content_plain_text_notification
10
+ UserMailer.notification notification
11
+ end
12
+
13
+ def custom_content_html_notification
14
+ UserMailer.notification notification(custom_content_html: 'This is <em>the text</em> of the mail. <strong>Awesome!</strong>')
15
+ end
16
+
17
+ def certificate_preview
18
+ UserMailer.certificate certificate
19
+ end
20
+
21
+ private
22
+
23
+ def user
24
+ User.new uid: 'some_user@gmail.com',
25
+ first_name: 'Some',
26
+ last_name: 'User',
27
+ verified_first_name: 'Jane',
28
+ verified_last_name: 'Doe',
29
+ last_organization: organization
30
+ end
31
+
32
+ def organization
33
+ Organization.central
34
+ end
35
+
36
+ def certificate
37
+ certificate_program = CertificateProgram.find_or_create_by!(title: 'Mumuki Certificate',
38
+ description: 'Functional Programming',
39
+ organization: organization,
40
+ start_date: 1.minute.ago,
41
+ end_date: 1.hour.since)
42
+
43
+ Certificate.new user: user, certificate_program: certificate_program
44
+ end
45
+
46
+ def notification(**hash)
47
+ Notification.new({user: user,
48
+ organization: organization,
49
+ subject: :custom,
50
+ custom_content_plain_text: 'This is the text of the mail. Awesome!',
51
+ custom_title: 'This is the title!'}.merge hash)
52
+ end
9
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-laboratory
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.8.1
4
+ version: 9.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-06 00:00:00.000000000 Z
11
+ date: 2021-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 9.8.0
33
+ version: 9.11.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 9.8.0
40
+ version: 9.11.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mumukit-bridge
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -564,6 +564,7 @@ files:
564
564
  - app/helpers/menu_bar_helper.rb
565
565
  - app/helpers/messages_helper.rb
566
566
  - app/helpers/multiple_file_editor_helper.rb
567
+ - app/helpers/notifications_helper.rb
567
568
  - app/helpers/open_graph_helper.rb
568
569
  - app/helpers/organization_breadcrumbs_helper.rb
569
570
  - app/helpers/overlapped_buttons_helper.rb
@@ -574,6 +575,7 @@ files:
574
575
  - app/helpers/runner_assets_helper.rb
575
576
  - app/helpers/toast_helper.rb
576
577
  - app/helpers/user_activity_helper.rb
578
+ - app/helpers/user_discussions_helper.rb
577
579
  - app/helpers/user_menu_helper.rb
578
580
  - app/mailers/application_mailer.rb
579
581
  - app/mailers/user_mailer.rb
@@ -630,6 +632,7 @@ files:
630
632
  - app/views/layouts/_authoring.html.erb
631
633
  - app/views/layouts/_copyright.html.erb
632
634
  - app/views/layouts/_discussions.html.erb
635
+ - app/views/layouts/_discussions_list.html.erb
633
636
  - app/views/layouts/_error.html.erb
634
637
  - app/views/layouts/_kids.html.erb
635
638
  - app/views/layouts/_kindergarten.html.erb
@@ -692,24 +695,36 @@ files:
692
695
  - app/views/layouts/modals/_level_up.html.erb
693
696
  - app/views/layouts/modals/_new_message.html.erb
694
697
  - app/views/lessons/show.html.erb
695
- - app/views/messages/errors.html.erb
696
- - app/views/notifications/_discussion.html.erb
698
+ - app/views/notifications/_custom.html.erb
697
699
  - app/views/notifications/_dropdown.html.erb
698
- - app/views/notifications/_exam_authorization_request.html.erb
700
+ - app/views/notifications/_exam_authorization_request_updated.html.erb
699
701
  - app/views/notifications/_exam_registration.html.erb
700
- - app/views/notifications/_message.html.erb
702
+ - app/views/notifications/previews/_custom.html.erb
703
+ - app/views/notifications/previews/_discussion.html.erb
704
+ - app/views/notifications/previews/_exam_authorization_request_updated.html.erb
705
+ - app/views/notifications/previews/_exam_registration.html.erb
706
+ - app/views/notifications/previews/_message.html.erb
701
707
  - app/views/user_mailer/1st_reminder.html.erb
702
708
  - app/views/user_mailer/1st_reminder.text.erb
703
709
  - app/views/user_mailer/2nd_reminder.html.erb
704
710
  - app/views/user_mailer/2nd_reminder.text.erb
705
711
  - app/views/user_mailer/3rd_reminder.html.erb
706
712
  - app/views/user_mailer/3rd_reminder.text.erb
713
+ - app/views/user_mailer/_mail_template.erb
707
714
  - app/views/user_mailer/certificate.html.erb
708
715
  - app/views/user_mailer/certificate.text.erb
709
716
  - app/views/user_mailer/no_submissions_reminder.html.erb
710
717
  - app/views/user_mailer/no_submissions_reminder.text.erb
718
+ - app/views/user_mailer/notification.html.erb
719
+ - app/views/user_mailer/notification.text.erb
720
+ - app/views/user_mailer/notifications/_custom.html.erb
721
+ - app/views/user_mailer/notifications/_exam_authorization_request_updated.html.erb
722
+ - app/views/user_mailer/notifications/_exam_registration.html.erb
723
+ - app/views/user_mailer/notifications/exam_authorization_request_updated/_approved.html.erb
724
+ - app/views/user_mailer/notifications/exam_authorization_request_updated/_rejected.html.erb
711
725
  - app/views/users/_activity_indicator.html.erb
712
726
  - app/views/users/_avatar_list.html.erb
727
+ - app/views/users/_basic_profile_fields.html.erb
713
728
  - app/views/users/_edit_user_form.html.erb
714
729
  - app/views/users/_profile_fields.html.erb
715
730
  - app/views/users/_term.html.erb
@@ -719,7 +734,9 @@ files:
719
734
  - app/views/users/discussions.html.erb
720
735
  - app/views/users/edit.html.erb
721
736
  - app/views/users/exam_authorizations.html.erb
737
+ - app/views/users/manage_notifications.html.erb
722
738
  - app/views/users/messages.html.erb
739
+ - app/views/users/notifications.html.erb
723
740
  - app/views/users/show.html.erb
724
741
  - app/views/users/terms.html.erb
725
742
  - config/i18n-tasks.yml
@@ -958,139 +975,139 @@ required_rubygems_version: !ruby/object:Gem::Requirement
958
975
  - !ruby/object:Gem::Version
959
976
  version: '0'
960
977
  requirements: []
961
- rubygems_version: 3.0.6
978
+ rubygems_version: 3.1.2
962
979
  signing_key:
963
980
  specification_version: 4
964
981
  summary: Code assement web application for the Mumuki Platform.
965
982
  test_files:
966
- - spec/spec_helper.rb
983
+ - spec/capybara_helper.rb
967
984
  - spec/api_helper.rb
968
- - spec/mailers/user_mailer_spec.rb
969
- - spec/mailers/previews/user_mailer_preview.rb
970
- - spec/javascripts/kids-button-spec.js
971
- - spec/javascripts/speech-bubble-renderer-spec.js
972
- - spec/javascripts/bridge-spec.js
973
- - spec/javascripts/timer-spec.js
974
- - spec/javascripts/editors-spec.js
975
- - spec/javascripts/upload-spec.js
976
- - spec/javascripts/spec-helper.js
977
- - spec/javascripts/results-renderers-spec.js
978
- - spec/javascripts/sync-mode-spec.js
979
- - spec/javascripts/csrf-token-spec.js
980
- - spec/javascripts/exercise-spec.js
981
- - spec/javascripts/i18n-spec.js
982
- - spec/javascripts/submissions-store-spec.js
983
- - spec/javascripts/events-spec.js
984
- - spec/javascripts/global-spec.js
985
- - spec/javascripts/gamification-spec.js
986
- - spec/javascripts/elipsis-spec.js
987
- - spec/javascripts/timeout-spec.js
988
- - spec/teaspoon_env.rb
989
- - spec/dummy/config/secrets.yml
990
- - spec/dummy/config/application.rb
991
- - spec/dummy/config/rabbit.yml
992
- - spec/dummy/config/puma.rb
993
- - spec/dummy/config/cable.yml
994
- - spec/dummy/config/environments/test.rb
995
- - spec/dummy/config/environments/development.rb
996
- - spec/dummy/config/boot.rb
997
- - spec/dummy/config/locales/en.yml
998
- - spec/dummy/config/spring.rb
999
- - spec/dummy/config/environment.rb
1000
- - spec/dummy/config/initializers/cookies_serializer.rb
1001
- - spec/dummy/config/initializers/assets.rb
1002
- - spec/dummy/config/initializers/wrap_parameters.rb
1003
- - spec/dummy/config/initializers/filter_parameter_logging.rb
1004
- - spec/dummy/config/routes.rb
1005
- - spec/dummy/config/database.yml
1006
- - spec/dummy/bin/bundle
1007
- - spec/dummy/bin/yarn
1008
- - spec/dummy/bin/rails
1009
- - spec/dummy/bin/setup
1010
- - spec/dummy/bin/rake
1011
- - spec/dummy/bin/update
1012
- - spec/dummy/config.ru
1013
- - spec/dummy/db/schema.rb
1014
- - spec/dummy/db/seeds.rb
1015
- - spec/dummy/package.json
1016
- - spec/dummy/public/character/magnifying_glass/apparition.svg
1017
- - spec/dummy/public/character/magnifying_glass/loop.svg
1018
- - spec/dummy/public/character/kibi/failure.svg
1019
- - spec/dummy/public/character/kibi/jump.svg
1020
- - spec/dummy/public/character/kibi/success2_l.svg
1021
- - spec/dummy/public/character/kibi/success_l.svg
1022
- - spec/dummy/public/character/kibi/context.svg
1023
- - spec/dummy/public/character/kibi/passed_with_warnings.svg
1024
- - spec/dummy/public/character/animations.json
1025
- - spec/dummy/public/medal/outline.svg
1026
- - spec/dummy/public/error/403.svg
1027
- - spec/dummy/public/error/404.svg
1028
- - spec/dummy/public/error/timeout_2.svg
1029
- - spec/dummy/public/error/timeout_1.svg
1030
- - spec/dummy/public/error/401.svg
1031
- - spec/dummy/public/error/410.svg
1032
- - spec/dummy/public/error/timeout_3.svg
1033
- - spec/dummy/public/error/500.svg
1034
- - spec/dummy/Rakefile
1035
- - spec/login_helper.rb
1036
- - spec/features/chapters_flow_spec.rb
1037
- - spec/features/exams_flow_spec.rb
1038
- - spec/features/terms_flow_spec.rb
1039
- - spec/features/exercise_flow_spec.rb
1040
- - spec/features/menu_bar_spec.rb
1041
- - spec/features/guides_flow_spec.rb
1042
- - spec/features/topic_flow_spec.rb
1043
- - spec/features/dynamic_exam_spec.rb
1044
- - spec/features/not_found_private_flow_spec.rb
1045
- - spec/features/immersive_redirection_spec.rb
1046
- - spec/features/discussion_flow_spec.rb
1047
- - spec/features/complements_flow_spec.rb
1048
985
  - spec/features/lessons_flow_spec.rb
1049
986
  - spec/features/login_flow_spec.rb
1050
- - spec/features/profile_flow_spec.rb
1051
- - spec/features/certificate_programs_flow_spec.rb
1052
- - spec/features/home_private_flow_spec.rb
987
+ - spec/features/exercise_flow_spec.rb
988
+ - spec/features/immersive_redirection_spec.rb
1053
989
  - spec/features/disabled_organization_flow_spec.rb
1054
- - spec/features/home_public_flow_spec.rb
1055
- - spec/features/not_found_public_flow_spec.rb
990
+ - spec/features/discussion_flow_spec.rb
991
+ - spec/features/menu_bar_spec.rb
992
+ - spec/features/invitations_flow_spec.rb
1056
993
  - spec/features/standard_flow_spec.rb
1057
- - spec/features/runner_assets_spec.rb
994
+ - spec/features/not_found_public_flow_spec.rb
995
+ - spec/features/home_public_flow_spec.rb
996
+ - spec/features/chapters_flow_spec.rb
1058
997
  - spec/features/disable_user_flow_spec.rb
1059
998
  - spec/features/links_flow_spec.rb
1060
- - spec/features/progressive_tips_spec.rb
1061
- - spec/features/invitations_flow_spec.rb
999
+ - spec/features/certificate_programs_flow_spec.rb
1000
+ - spec/features/exams_flow_spec.rb
1062
1001
  - spec/features/user_activity_flow_spec.rb
1063
- - spec/features/notifications_flow_spec.rb
1064
1002
  - spec/features/guide_reset_spec.rb
1065
- - spec/capybara_helper.rb
1003
+ - spec/features/dynamic_exam_spec.rb
1004
+ - spec/features/not_found_private_flow_spec.rb
1005
+ - spec/features/guides_flow_spec.rb
1006
+ - spec/features/profile_flow_spec.rb
1007
+ - spec/features/notifications_flow_spec.rb
1008
+ - spec/features/terms_flow_spec.rb
1009
+ - spec/features/home_private_flow_spec.rb
1010
+ - spec/features/runner_assets_spec.rb
1011
+ - spec/features/topic_flow_spec.rb
1012
+ - spec/features/complements_flow_spec.rb
1013
+ - spec/features/progressive_tips_spec.rb
1066
1014
  - spec/helpers/breadcrumbs_helper_spec.rb
1067
- - spec/helpers/page_title_helper_spec.rb
1015
+ - spec/helpers/certificate_helper_spec.rb
1016
+ - spec/helpers/avatar_helper_spec.rb
1068
1017
  - spec/helpers/with_navigation_spec.rb
1018
+ - spec/helpers/authors_helper_spec.rb
1019
+ - spec/helpers/with_choices_spec.rb
1069
1020
  - spec/helpers/icons_helper_spec.rb
1021
+ - spec/helpers/email_helper_spec.rb
1070
1022
  - spec/helpers/exercise_input_helper_spec.rb
1071
1023
  - spec/helpers/user_activity_helper_spec.rb
1072
- - spec/helpers/email_helper_spec.rb
1073
- - spec/helpers/avatar_helper_spec.rb
1074
- - spec/helpers/certificate_helper_spec.rb
1075
- - spec/helpers/application_helper_spec.rb
1076
- - spec/helpers/with_choices_spec.rb
1077
1024
  - spec/helpers/test_results_rendering_spec.rb
1078
- - spec/helpers/authors_helper_spec.rb
1025
+ - spec/helpers/application_helper_spec.rb
1026
+ - spec/helpers/page_title_helper_spec.rb
1079
1027
  - spec/evaluation_helper.rb
1080
- - spec/controllers/exam_registrations_controller_spec.rb
1081
- - spec/controllers/certificates_controller_spec.rb
1082
- - spec/controllers/confirmations_controller_spec.rb
1083
- - spec/controllers/guide_progress_controller_spec.rb
1028
+ - spec/dummy/Rakefile
1029
+ - spec/dummy/package.json
1030
+ - spec/dummy/bin/setup
1031
+ - spec/dummy/bin/bundle
1032
+ - spec/dummy/bin/yarn
1033
+ - spec/dummy/bin/rake
1034
+ - spec/dummy/bin/rails
1035
+ - spec/dummy/bin/update
1036
+ - spec/dummy/public/error/timeout_2.svg
1037
+ - spec/dummy/public/error/timeout_3.svg
1038
+ - spec/dummy/public/error/timeout_1.svg
1039
+ - spec/dummy/public/error/500.svg
1040
+ - spec/dummy/public/error/403.svg
1041
+ - spec/dummy/public/error/401.svg
1042
+ - spec/dummy/public/error/410.svg
1043
+ - spec/dummy/public/error/404.svg
1044
+ - spec/dummy/public/character/magnifying_glass/loop.svg
1045
+ - spec/dummy/public/character/magnifying_glass/apparition.svg
1046
+ - spec/dummy/public/character/kibi/success_l.svg
1047
+ - spec/dummy/public/character/kibi/failure.svg
1048
+ - spec/dummy/public/character/kibi/jump.svg
1049
+ - spec/dummy/public/character/kibi/passed_with_warnings.svg
1050
+ - spec/dummy/public/character/kibi/success2_l.svg
1051
+ - spec/dummy/public/character/kibi/context.svg
1052
+ - spec/dummy/public/character/animations.json
1053
+ - spec/dummy/public/medal/outline.svg
1054
+ - spec/dummy/db/schema.rb
1055
+ - spec/dummy/db/seeds.rb
1056
+ - spec/dummy/config.ru
1057
+ - spec/dummy/config/secrets.yml
1058
+ - spec/dummy/config/puma.rb
1059
+ - spec/dummy/config/boot.rb
1060
+ - spec/dummy/config/locales/en.yml
1061
+ - spec/dummy/config/environment.rb
1062
+ - spec/dummy/config/initializers/assets.rb
1063
+ - spec/dummy/config/initializers/wrap_parameters.rb
1064
+ - spec/dummy/config/initializers/cookies_serializer.rb
1065
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
1066
+ - spec/dummy/config/database.yml
1067
+ - spec/dummy/config/routes.rb
1068
+ - spec/dummy/config/spring.rb
1069
+ - spec/dummy/config/rabbit.yml
1070
+ - spec/dummy/config/environments/development.rb
1071
+ - spec/dummy/config/environments/test.rb
1072
+ - spec/dummy/config/application.rb
1073
+ - spec/dummy/config/cable.yml
1074
+ - spec/teaspoon_env.rb
1075
+ - spec/controllers/exercise_solutions_controller_spec.rb
1076
+ - spec/controllers/exam_authorization_requests_controller_spec.rb
1084
1077
  - spec/controllers/discussions_controller_spec.rb
1085
- - spec/controllers/organizations_api_controller_spec.rb
1078
+ - spec/controllers/guide_progress_controller_spec.rb
1079
+ - spec/controllers/users_controller_spec.rb
1080
+ - spec/controllers/courses_api_controller_spec.rb
1086
1081
  - spec/controllers/chapters_controller_spec.rb
1087
- - spec/controllers/invitations_controller_spec.rb
1088
- - spec/controllers/messages_controller_spec.rb
1082
+ - spec/controllers/users_api_controller_spec.rb
1083
+ - spec/controllers/exam_registrations_controller_spec.rb
1089
1084
  - spec/controllers/students_api_controller_spec.rb
1090
- - spec/controllers/users_controller_spec.rb
1085
+ - spec/controllers/confirmations_controller_spec.rb
1091
1086
  - spec/controllers/api_clients_controller.rb
1087
+ - spec/controllers/certificates_controller_spec.rb
1088
+ - spec/controllers/invitations_controller_spec.rb
1092
1089
  - spec/controllers/discussions_messages_controller_spec.rb
1093
- - spec/controllers/exercise_solutions_controller_spec.rb
1094
- - spec/controllers/courses_api_controller_spec.rb
1095
- - spec/controllers/exam_authorization_requests_controller_spec.rb
1096
- - spec/controllers/users_api_controller_spec.rb
1090
+ - spec/controllers/messages_controller_spec.rb
1091
+ - spec/controllers/organizations_api_controller_spec.rb
1092
+ - spec/javascripts/elipsis-spec.js
1093
+ - spec/javascripts/bridge-spec.js
1094
+ - spec/javascripts/timeout-spec.js
1095
+ - spec/javascripts/results-renderers-spec.js
1096
+ - spec/javascripts/submissions-store-spec.js
1097
+ - spec/javascripts/kids-button-spec.js
1098
+ - spec/javascripts/speech-bubble-renderer-spec.js
1099
+ - spec/javascripts/sync-mode-spec.js
1100
+ - spec/javascripts/events-spec.js
1101
+ - spec/javascripts/editors-spec.js
1102
+ - spec/javascripts/spec-helper.js
1103
+ - spec/javascripts/gamification-spec.js
1104
+ - spec/javascripts/i18n-spec.js
1105
+ - spec/javascripts/upload-spec.js
1106
+ - spec/javascripts/timer-spec.js
1107
+ - spec/javascripts/global-spec.js
1108
+ - spec/javascripts/exercise-spec.js
1109
+ - spec/javascripts/csrf-token-spec.js
1110
+ - spec/login_helper.rb
1111
+ - spec/spec_helper.rb
1112
+ - spec/mailers/previews/user_mailer_preview.rb
1113
+ - spec/mailers/user_mailer_spec.rb
@@ -1 +0,0 @@
1
- <p> <%= t :messages_error %> </p>
@@ -1 +0,0 @@
1
- <%= menu_item :comments, :new_discussion_message, url_for([target.item, target]), { title: target.item.name.truncate_words(3) } %>
@@ -1 +0,0 @@
1
- <%= menu_item :book_open, :exam_authorization_request_updated, exam_authorizations_user_path, { description: target.exam_registration.description } %>