mumuki-laboratory 8.4.0 → 9.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/mumuki_laboratory/application/upload.js +69 -14
- data/app/assets/stylesheets/mumuki_laboratory/application/_layout.scss +3 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_content_show.scss +15 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +31 -8
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_medal.scss +1 -1
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_menu.scss +35 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_profile.scss +11 -0
- data/app/controllers/api/base_controller.rb +0 -1
- data/app/controllers/api/courses_controller.rb +1 -1
- data/app/controllers/api/organizations_controller.rb +5 -2
- data/app/controllers/api/roles_controller.rb +4 -0
- data/app/controllers/api/users_controller.rb +6 -1
- data/app/controllers/application_controller.rb +1 -1
- data/app/controllers/concerns/with_authorization.rb +1 -16
- data/app/controllers/concerns/with_user_params.rb +4 -0
- data/app/controllers/discussions_messages_controller.rb +0 -1
- data/app/controllers/exam_authorization_requests_controller.rb +26 -0
- data/app/controllers/exam_registrations_controller.rb +6 -0
- data/app/controllers/users_controller.rb +8 -5
- data/app/helpers/application_helper.rb +4 -0
- data/app/helpers/breadcrumbs_helper.rb +4 -0
- data/app/helpers/content_view_helper.rb +19 -0
- data/app/helpers/exercise_input_helper.rb +8 -17
- data/app/helpers/icons_helper.rb +3 -11
- data/app/helpers/links_helper.rb +3 -3
- data/app/helpers/menu_bar_helper.rb +3 -3
- data/app/helpers/progress_bar_helper.rb +2 -2
- data/app/helpers/user_menu_helper.rb +18 -0
- data/app/views/chapters/show.html.erb +17 -16
- data/app/views/complements/show.html.erb +1 -1
- data/app/views/discussions/_message.html.erb +7 -7
- data/app/views/exam_authorization_requests/show.html.erb +17 -0
- data/app/views/exam_registrations/show.html.erb +37 -0
- data/app/views/exams/show.html.erb +1 -1
- data/app/views/{layouts → exercises}/_exercise_skipped.html.erb +0 -0
- data/app/views/exercises/_exercise_title_icons.html.erb +4 -0
- data/app/views/exercises/show.html.erb +5 -8
- data/app/views/{layouts → guides}/_guide.html.erb +3 -3
- data/app/views/guides/_guide_container.html.erb +24 -0
- data/app/views/{layouts → guides}/_guide_title_icons.html.erb +1 -3
- data/app/views/layouts/_progress_bar.html.erb +9 -7
- data/app/views/layouts/_progress_listing.html.erb +5 -5
- data/app/views/layouts/_user_menu.html.erb +21 -0
- data/app/views/layouts/application.html.erb +1 -6
- data/app/views/layouts/exercise_inputs/editors/_upload.html.erb +11 -2
- data/app/views/lessons/show.html.erb +1 -1
- data/app/views/notifications/_discussion.html.erb +1 -0
- data/app/views/notifications/_dropdown.html.erb +13 -0
- data/app/views/notifications/_exam_authorization_request.html.erb +1 -0
- data/app/views/notifications/_exam_registration.html.erb +1 -0
- data/app/views/notifications/_message.html.erb +1 -0
- data/app/views/users/_user_form.html.erb +10 -8
- data/app/views/users/discussions.html.erb +28 -0
- data/app/views/users/edit.html.erb +1 -1
- data/app/views/users/messages.html.erb +27 -0
- data/app/views/users/show.html.erb +4 -51
- data/app/views/users/terms.html.erb +2 -2
- data/config/routes.rb +6 -0
- data/lib/mumuki/laboratory/controllers/notifications.rb +3 -22
- data/lib/mumuki/laboratory/locales/en.yml +34 -17
- data/lib/mumuki/laboratory/locales/es-CL.yml +25 -8
- data/lib/mumuki/laboratory/locales/es.yml +30 -14
- data/lib/mumuki/laboratory/locales/pt.yml +27 -10
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/exam_authorization_requests_controller_spec.rb +40 -0
- data/spec/controllers/exam_registrations_controller_spec.rb +19 -0
- data/spec/controllers/organizations_api_controller_spec.rb +16 -9
- data/spec/dummy/db/schema.rb +23 -0
- data/spec/features/exercise_flow_spec.rb +3 -3
- data/spec/features/login_flow_spec.rb +1 -1
- data/spec/features/menu_bar_spec.rb +24 -24
- data/spec/features/notifications_flow_spec.rb +46 -0
- data/spec/features/profile_flow_spec.rb +6 -9
- data/spec/features/terms_flow_spec.rb +30 -0
- data/spec/helpers/application_helper_spec.rb +10 -0
- data/spec/javascripts/bridge-spec.js +2 -2
- data/spec/javascripts/csrf-token-spec.js +2 -2
- data/spec/javascripts/editors-spec.js +7 -9
- data/spec/javascripts/elipsis-spec.js +4 -4
- data/spec/javascripts/events-spec.js +7 -7
- data/spec/javascripts/exercise-spec.js +7 -8
- data/spec/javascripts/global-spec.js +3 -3
- data/spec/javascripts/i18n-spec.js +23 -20
- data/spec/javascripts/kids-button-spec.js +6 -8
- data/spec/javascripts/results-renderers-spec.js +5 -5
- data/spec/javascripts/speech-bubble-renderer-spec.js +2 -3
- data/spec/javascripts/submissions-store-spec.js +14 -14
- data/spec/javascripts/sync-mode-spec.js +3 -3
- data/spec/javascripts/timeout-spec.js +2 -2
- data/spec/javascripts/timer-spec.js +2 -2
- data/spec/javascripts/upload-spec.js +80 -0
- metadata +132 -108
- data/app/views/layouts/_guide_container.html.erb +0 -28
@@ -4,12 +4,12 @@ describe('sync mode', () => {
|
|
4
4
|
mumuki.syncMode._selectSyncMode();
|
5
5
|
|
6
6
|
expect(mumuki.syncMode._current instanceof mumuki.syncMode.ServerSyncMode).toBe(true);
|
7
|
-
})
|
7
|
+
});
|
8
8
|
|
9
9
|
it('can choose local mode', () => {
|
10
10
|
mumuki.incognitoUser = true;
|
11
11
|
mumuki.syncMode._selectSyncMode();
|
12
12
|
|
13
13
|
expect(mumuki.syncMode._current instanceof mumuki.syncMode.ClientSyncMode).toBe(true);
|
14
|
-
})
|
15
|
-
})
|
14
|
+
});
|
15
|
+
});
|
@@ -0,0 +1,80 @@
|
|
1
|
+
describe('upload', () => {
|
2
|
+
const fileSizeLimit = 20;
|
3
|
+
|
4
|
+
fixture.set(`
|
5
|
+
<textarea id="solution_content" type="text" name="solution[content]" class="hidden"></textarea>
|
6
|
+
<input id="mu-upload-input" type="file" class="upload submission-control hidden" mu-upload-file-limit=${fileSizeLimit} accept=".txt" />
|
7
|
+
<label id="mu-upload-label" for="mu-upload-input" class="btn btn-success"></label>
|
8
|
+
<button class="btn btn-success btn-block btn-submit disabled"></button>
|
9
|
+
<div id="mu-upload-file-limit-exceeded" class="hidden"></div>
|
10
|
+
`);
|
11
|
+
|
12
|
+
beforeEach(() => {
|
13
|
+
mumuki.upload._setUI();
|
14
|
+
});
|
15
|
+
|
16
|
+
function reader(file, done) {
|
17
|
+
let fileReader = new mumuki.upload.FileUploader(file).uploadFileIfValid();
|
18
|
+
if (fileReader) {
|
19
|
+
fileReader.addEventListener('load', () => done());
|
20
|
+
fileReader.addEventListener('error', done);
|
21
|
+
return fileReader;
|
22
|
+
} else {
|
23
|
+
done();
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
describe('no file is uploaded', () => {
|
28
|
+
beforeEach((done) => {
|
29
|
+
reader(null, done);
|
30
|
+
});
|
31
|
+
|
32
|
+
it('loads no solution', function () {
|
33
|
+
expect($('#solution_content').html()).toEqual('');
|
34
|
+
});
|
35
|
+
|
36
|
+
it('does not allow submitting', function () {
|
37
|
+
expect($('.btn-submit').hasClass('disabled')).toBe(true);
|
38
|
+
});
|
39
|
+
|
40
|
+
it('does not exceed max file size', function () {
|
41
|
+
expect($('#mu-upload-file-limit-exceeded').hasClass('hidden')).toBe(true);
|
42
|
+
});
|
43
|
+
});
|
44
|
+
|
45
|
+
describe('small file is uploaded', () => {
|
46
|
+
beforeEach((done) => {
|
47
|
+
reader(new File(["short solution"], "short.txt"), done);
|
48
|
+
});
|
49
|
+
|
50
|
+
it('loads solution', function () {
|
51
|
+
expect($('#solution_content').html()).toEqual('short solution');
|
52
|
+
});
|
53
|
+
|
54
|
+
it('allows submitting', function () {
|
55
|
+
expect($('.btn-submit').hasClass('disabled')).toBe(false);
|
56
|
+
});
|
57
|
+
|
58
|
+
it('does not exceed max file size', function () {
|
59
|
+
expect($('#mu-upload-file-limit-exceeded').hasClass('hidden')).toBe(true);
|
60
|
+
});
|
61
|
+
});
|
62
|
+
|
63
|
+
describe('large file is uploaded', () => {
|
64
|
+
beforeEach((done) => {
|
65
|
+
reader(new File(["solution that is too long to be allowed"], "long.txt"), done);
|
66
|
+
});
|
67
|
+
|
68
|
+
it('loads no solution', function () {
|
69
|
+
expect($('#solution_content').html()).toEqual('');
|
70
|
+
});
|
71
|
+
|
72
|
+
it('does not allow submitting', function () {
|
73
|
+
expect($('.btn-submit').hasClass('disabled')).toBe(true);
|
74
|
+
});
|
75
|
+
|
76
|
+
it('exceeds max file size', function () {
|
77
|
+
expect($('#mu-upload-file-limit-exceeded').hasClass('hidden')).toBe(false);
|
78
|
+
});
|
79
|
+
});
|
80
|
+
});
|
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:
|
4
|
+
version: 9.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franco Bulgarelli
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-08 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:
|
33
|
+
version: 9.0.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:
|
40
|
+
version: 9.0.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: mumukit-bridge
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '7.
|
61
|
+
version: '7.6'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '7.
|
68
|
+
version: '7.6'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: mumukit-nuntius
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -440,6 +440,7 @@ files:
|
|
440
440
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_terms.scss
|
441
441
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_timer.scss
|
442
442
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_upload.scss
|
443
|
+
- app/assets/stylesheets/mumuki_laboratory/application/modules/_user_menu.scss
|
443
444
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_user_profile.scss
|
444
445
|
- app/controllers/ajax_controller.rb
|
445
446
|
- app/controllers/api/base_controller.rb
|
@@ -465,6 +466,8 @@ files:
|
|
465
466
|
- app/controllers/concerns/with_user_params.rb
|
466
467
|
- app/controllers/discussions_controller.rb
|
467
468
|
- app/controllers/discussions_messages_controller.rb
|
469
|
+
- app/controllers/exam_authorization_requests_controller.rb
|
470
|
+
- app/controllers/exam_registrations_controller.rb
|
468
471
|
- app/controllers/exams_controller.rb
|
469
472
|
- app/controllers/exercise_confirmations_controller.rb
|
470
473
|
- app/controllers/exercise_query_controller.rb
|
@@ -493,6 +496,7 @@ files:
|
|
493
496
|
- app/helpers/concerns/with_student_path_navigation/finish_navigation.rb
|
494
497
|
- app/helpers/concerns/with_student_path_navigation/navigation.rb
|
495
498
|
- app/helpers/concerns/with_student_path_navigation/revisit_navigation.rb
|
499
|
+
- app/helpers/content_view_helper.rb
|
496
500
|
- app/helpers/contextualization_result_helper.rb
|
497
501
|
- app/helpers/discussions_helper.rb
|
498
502
|
- app/helpers/editor_helper.rb
|
@@ -516,6 +520,7 @@ files:
|
|
516
520
|
- app/helpers/progress_bar_helper.rb
|
517
521
|
- app/helpers/progress_helper.rb
|
518
522
|
- app/helpers/runner_assets_helper.rb
|
523
|
+
- app/helpers/user_menu_helper.rb
|
519
524
|
- app/mailers/application_mailer.rb
|
520
525
|
- app/mailers/user_mailer.rb
|
521
526
|
- app/views/appendixes/show.html.erb
|
@@ -537,6 +542,8 @@ files:
|
|
537
542
|
- app/views/errors/internal_server_error.html.erb
|
538
543
|
- app/views/errors/not_found.html.erb
|
539
544
|
- app/views/errors/unauthorized.html.erb
|
545
|
+
- app/views/exam_authorization_requests/show.html.erb
|
546
|
+
- app/views/exam_registrations/show.html.erb
|
540
547
|
- app/views/exams/show.html.erb
|
541
548
|
- app/views/exercise_solutions/_assistant_rules_box.html.erb
|
542
549
|
- app/views/exercise_solutions/_contextualization_results_body.html.erb
|
@@ -551,18 +558,19 @@ files:
|
|
551
558
|
- app/views/exercise_solutions/_results_hidden.html.erb
|
552
559
|
- app/views/exercise_solutions/_results_title.html.erb
|
553
560
|
- app/views/exercises/_exercise_assignment.html.erb
|
561
|
+
- app/views/exercises/_exercise_skipped.html.erb
|
562
|
+
- app/views/exercises/_exercise_title_icons.html.erb
|
554
563
|
- app/views/exercises/_read_only.html.erb
|
555
564
|
- app/views/exercises/show.html.erb
|
565
|
+
- app/views/guides/_guide.html.erb
|
566
|
+
- app/views/guides/_guide_container.html.erb
|
567
|
+
- app/views/guides/_guide_title_icons.html.erb
|
556
568
|
- app/views/invitations/_invitation_form.html.erb
|
557
569
|
- app/views/invitations/show.html.erb
|
558
570
|
- app/views/layouts/_authoring.html.erb
|
559
571
|
- app/views/layouts/_copyright.html.erb
|
560
572
|
- app/views/layouts/_discussions.html.erb
|
561
573
|
- app/views/layouts/_error.html.erb
|
562
|
-
- app/views/layouts/_exercise_skipped.html.erb
|
563
|
-
- app/views/layouts/_guide.html.erb
|
564
|
-
- app/views/layouts/_guide_container.html.erb
|
565
|
-
- app/views/layouts/_guide_title_icons.html.erb
|
566
574
|
- app/views/layouts/_kids.html.erb
|
567
575
|
- app/views/layouts/_kindergarten.html.erb
|
568
576
|
- app/views/layouts/_main.html.erb
|
@@ -581,6 +589,7 @@ files:
|
|
581
589
|
- app/views/layouts/_terms_acceptance_disclaimer.html.erb
|
582
590
|
- app/views/layouts/_test_results.html.erb
|
583
591
|
- app/views/layouts/_timer.html.erb
|
592
|
+
- app/views/layouts/_user_menu.html.erb
|
584
593
|
- app/views/layouts/application.html.erb
|
585
594
|
- app/views/layouts/embedded.html.erb
|
586
595
|
- app/views/layouts/exercise_inputs/editors/_code.html.erb
|
@@ -623,6 +632,11 @@ files:
|
|
623
632
|
- app/views/layouts/modals/_new_message.html.erb
|
624
633
|
- app/views/lessons/show.html.erb
|
625
634
|
- app/views/messages/errors.html.erb
|
635
|
+
- app/views/notifications/_discussion.html.erb
|
636
|
+
- app/views/notifications/_dropdown.html.erb
|
637
|
+
- app/views/notifications/_exam_authorization_request.html.erb
|
638
|
+
- app/views/notifications/_exam_registration.html.erb
|
639
|
+
- app/views/notifications/_message.html.erb
|
626
640
|
- app/views/user_mailer/1st_reminder.html.erb
|
627
641
|
- app/views/user_mailer/1st_reminder.text.erb
|
628
642
|
- app/views/user_mailer/2nd_reminder.html.erb
|
@@ -636,7 +650,9 @@ files:
|
|
636
650
|
- app/views/users/_profile_fields.html.erb
|
637
651
|
- app/views/users/_term.html.erb
|
638
652
|
- app/views/users/_user_form.html.erb
|
653
|
+
- app/views/users/discussions.html.erb
|
639
654
|
- app/views/users/edit.html.erb
|
655
|
+
- app/views/users/messages.html.erb
|
640
656
|
- app/views/users/show.html.erb
|
641
657
|
- app/views/users/terms.html.erb
|
642
658
|
- config/i18n-tasks.yml
|
@@ -689,6 +705,8 @@ files:
|
|
689
705
|
- spec/controllers/courses_api_controller_spec.rb
|
690
706
|
- spec/controllers/discussions_controller_spec.rb
|
691
707
|
- spec/controllers/discussions_messages_controller_spec.rb
|
708
|
+
- spec/controllers/exam_authorization_requests_controller_spec.rb
|
709
|
+
- spec/controllers/exam_registrations_controller_spec.rb
|
692
710
|
- spec/controllers/exercise_solutions_controller_spec.rb
|
693
711
|
- spec/controllers/guide_progress_controller_spec.rb
|
694
712
|
- spec/controllers/invitations_controller_spec.rb
|
@@ -764,6 +782,7 @@ files:
|
|
764
782
|
- spec/features/menu_bar_spec.rb
|
765
783
|
- spec/features/not_found_private_flow_spec.rb
|
766
784
|
- spec/features/not_found_public_flow_spec.rb
|
785
|
+
- spec/features/notifications_flow_spec.rb
|
767
786
|
- spec/features/profile_flow_spec.rb
|
768
787
|
- spec/features/progressive_tips_spec.rb
|
769
788
|
- spec/features/runner_assets_spec.rb
|
@@ -798,6 +817,7 @@ files:
|
|
798
817
|
- spec/javascripts/sync-mode-spec.js
|
799
818
|
- spec/javascripts/timeout-spec.js
|
800
819
|
- spec/javascripts/timer-spec.js
|
820
|
+
- spec/javascripts/upload-spec.js
|
801
821
|
- spec/login_helper.rb
|
802
822
|
- spec/mailers/previews/user_mailer_preview.rb
|
803
823
|
- spec/mailers/user_mailer_spec.rb
|
@@ -847,7 +867,7 @@ homepage: https://mumuki.io
|
|
847
867
|
licenses:
|
848
868
|
- AGPL-3.0
|
849
869
|
metadata: {}
|
850
|
-
post_install_message:
|
870
|
+
post_install_message:
|
851
871
|
rdoc_options: []
|
852
872
|
require_paths:
|
853
873
|
- lib
|
@@ -862,131 +882,135 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
862
882
|
- !ruby/object:Gem::Version
|
863
883
|
version: '0'
|
864
884
|
requirements: []
|
865
|
-
rubyforge_project:
|
885
|
+
rubyforge_project:
|
866
886
|
rubygems_version: 2.7.6
|
867
|
-
signing_key:
|
887
|
+
signing_key:
|
868
888
|
specification_version: 4
|
869
889
|
summary: Code assement web application for the Mumuki Platform.
|
870
890
|
test_files:
|
871
|
-
- spec/
|
891
|
+
- spec/controllers/invitations_controller_spec.rb
|
892
|
+
- spec/controllers/discussions_controller_spec.rb
|
893
|
+
- spec/controllers/api_clients_controller.rb
|
894
|
+
- spec/controllers/guide_progress_controller_spec.rb
|
895
|
+
- spec/controllers/exercise_solutions_controller_spec.rb
|
896
|
+
- spec/controllers/courses_api_controller_spec.rb
|
897
|
+
- spec/controllers/exam_registrations_controller_spec.rb
|
898
|
+
- spec/controllers/students_api_controller_spec.rb
|
899
|
+
- spec/controllers/messages_controller_spec.rb
|
900
|
+
- spec/controllers/exam_authorization_requests_controller_spec.rb
|
901
|
+
- spec/controllers/confirmations_controller_spec.rb
|
902
|
+
- spec/controllers/discussions_messages_controller_spec.rb
|
903
|
+
- spec/controllers/users_api_controller_spec.rb
|
904
|
+
- spec/controllers/chapters_controller_spec.rb
|
905
|
+
- spec/controllers/organizations_api_controller_spec.rb
|
906
|
+
- spec/controllers/users_controller_spec.rb
|
907
|
+
- spec/evaluation_helper.rb
|
908
|
+
- spec/capybara_helper.rb
|
909
|
+
- spec/login_helper.rb
|
872
910
|
- spec/mailers/previews/user_mailer_preview.rb
|
873
|
-
- spec/
|
874
|
-
- spec/
|
875
|
-
- spec/dummy/
|
876
|
-
- spec/dummy/config/puma.rb
|
877
|
-
- spec/dummy/config/initializers/wrap_parameters.rb
|
878
|
-
- spec/dummy/config/initializers/cookies_serializer.rb
|
879
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
880
|
-
- spec/dummy/config/initializers/assets.rb
|
881
|
-
- spec/dummy/config/application.rb
|
882
|
-
- spec/dummy/config/environment.rb
|
883
|
-
- spec/dummy/config/locales/en.yml
|
884
|
-
- spec/dummy/config/spring.rb
|
885
|
-
- spec/dummy/config/rabbit.yml
|
886
|
-
- spec/dummy/config/environments/test.rb
|
887
|
-
- spec/dummy/config/environments/development.rb
|
888
|
-
- spec/dummy/config/cable.yml
|
889
|
-
- spec/dummy/config/routes.rb
|
890
|
-
- spec/dummy/config/database.yml
|
891
|
-
- spec/dummy/db/seeds.rb
|
892
|
-
- spec/dummy/db/schema.rb
|
893
|
-
- spec/dummy/Rakefile
|
894
|
-
- spec/dummy/bin/rake
|
895
|
-
- spec/dummy/bin/rails
|
896
|
-
- spec/dummy/bin/yarn
|
911
|
+
- spec/mailers/user_mailer_spec.rb
|
912
|
+
- spec/spec_helper.rb
|
913
|
+
- spec/dummy/package.json
|
897
914
|
- spec/dummy/bin/bundle
|
898
915
|
- spec/dummy/bin/update
|
899
916
|
- spec/dummy/bin/setup
|
900
|
-
- spec/dummy/
|
901
|
-
- spec/dummy/
|
902
|
-
- spec/dummy/
|
917
|
+
- spec/dummy/bin/rake
|
918
|
+
- spec/dummy/bin/rails
|
919
|
+
- spec/dummy/bin/yarn
|
920
|
+
- spec/dummy/public/character/kibi/jump.svg
|
903
921
|
- spec/dummy/public/character/kibi/context.svg
|
904
922
|
- spec/dummy/public/character/kibi/success_l.svg
|
905
923
|
- spec/dummy/public/character/kibi/failure.svg
|
906
|
-
- spec/dummy/public/character/kibi/
|
924
|
+
- spec/dummy/public/character/kibi/success2_l.svg
|
907
925
|
- spec/dummy/public/character/kibi/passed_with_warnings.svg
|
926
|
+
- spec/dummy/public/character/magnifying_glass/apparition.svg
|
927
|
+
- spec/dummy/public/character/magnifying_glass/loop.svg
|
908
928
|
- spec/dummy/public/character/animations.json
|
909
929
|
- spec/dummy/public/medal/outline.svg
|
910
|
-
- spec/dummy/public/error/timeout_3.svg
|
911
|
-
- spec/dummy/public/error/timeout_1.svg
|
912
930
|
- spec/dummy/public/error/403.svg
|
913
931
|
- spec/dummy/public/error/410.svg
|
914
|
-
- spec/dummy/public/error/timeout_2.svg
|
915
|
-
- spec/dummy/public/error/404.svg
|
916
932
|
- spec/dummy/public/error/401.svg
|
933
|
+
- spec/dummy/public/error/404.svg
|
917
934
|
- spec/dummy/public/error/500.svg
|
935
|
+
- spec/dummy/public/error/timeout_1.svg
|
936
|
+
- spec/dummy/public/error/timeout_3.svg
|
937
|
+
- spec/dummy/public/error/timeout_2.svg
|
918
938
|
- spec/dummy/config.ru
|
919
|
-
- spec/dummy/
|
920
|
-
- spec/
|
921
|
-
- spec/
|
922
|
-
- spec/
|
923
|
-
- spec/
|
924
|
-
- spec/
|
925
|
-
- spec/
|
926
|
-
- spec/
|
927
|
-
- spec/
|
928
|
-
- spec/
|
929
|
-
- spec/
|
930
|
-
- spec/
|
931
|
-
- spec/
|
932
|
-
- spec/
|
933
|
-
- spec/
|
934
|
-
- spec/
|
935
|
-
- spec/
|
936
|
-
- spec/
|
937
|
-
- spec/
|
938
|
-
- spec/
|
939
|
-
- spec/
|
939
|
+
- spec/dummy/db/schema.rb
|
940
|
+
- spec/dummy/db/seeds.rb
|
941
|
+
- spec/dummy/config/application.rb
|
942
|
+
- spec/dummy/config/boot.rb
|
943
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
944
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
945
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
946
|
+
- spec/dummy/config/initializers/assets.rb
|
947
|
+
- spec/dummy/config/puma.rb
|
948
|
+
- spec/dummy/config/environments/development.rb
|
949
|
+
- spec/dummy/config/environments/test.rb
|
950
|
+
- spec/dummy/config/database.yml
|
951
|
+
- spec/dummy/config/locales/en.yml
|
952
|
+
- spec/dummy/config/secrets.yml
|
953
|
+
- spec/dummy/config/environment.rb
|
954
|
+
- spec/dummy/config/spring.rb
|
955
|
+
- spec/dummy/config/cable.yml
|
956
|
+
- spec/dummy/config/rabbit.yml
|
957
|
+
- spec/dummy/config/routes.rb
|
958
|
+
- spec/dummy/Rakefile
|
959
|
+
- spec/api_helper.rb
|
940
960
|
- spec/features/profile_flow_spec.rb
|
941
|
-
- spec/features/
|
961
|
+
- spec/features/not_found_public_flow_spec.rb
|
962
|
+
- spec/features/home_private_flow_spec.rb
|
963
|
+
- spec/features/login_flow_spec.rb
|
942
964
|
- spec/features/links_flow_spec.rb
|
943
|
-
- spec/features/
|
965
|
+
- spec/features/complements_flow_spec.rb
|
966
|
+
- spec/features/notifications_flow_spec.rb
|
967
|
+
- spec/features/topic_flow_spec.rb
|
968
|
+
- spec/features/guide_reset_spec.rb
|
969
|
+
- spec/features/menu_bar_spec.rb
|
970
|
+
- spec/features/disabled_organization_flow_spec.rb
|
971
|
+
- spec/features/dynamic_exam_spec.rb
|
944
972
|
- spec/features/standard_flow_spec.rb
|
945
|
-
- spec/features/
|
973
|
+
- spec/features/home_public_flow_spec.rb
|
974
|
+
- spec/features/chapters_flow_spec.rb
|
975
|
+
- spec/features/not_found_private_flow_spec.rb
|
976
|
+
- spec/features/immersive_redirection_spec.rb
|
977
|
+
- spec/features/terms_flow_spec.rb
|
946
978
|
- spec/features/progressive_tips_spec.rb
|
947
979
|
- spec/features/lessons_flow_spec.rb
|
948
980
|
- spec/features/disable_user_flow_spec.rb
|
949
|
-
- spec/features/
|
950
|
-
- spec/features/home_public_flow_spec.rb
|
951
|
-
- spec/features/not_found_public_flow_spec.rb
|
981
|
+
- spec/features/invitations_flow_spec.rb
|
952
982
|
- spec/features/guides_flow_spec.rb
|
953
|
-
- spec/features/
|
954
|
-
- spec/features/dynamic_exam_spec.rb
|
955
|
-
- spec/features/exams_flow_spec.rb
|
956
|
-
- spec/features/topic_flow_spec.rb
|
957
|
-
- spec/features/chapters_flow_spec.rb
|
983
|
+
- spec/features/runner_assets_spec.rb
|
958
984
|
- spec/features/discussion_flow_spec.rb
|
959
|
-
- spec/features/
|
960
|
-
- spec/features/
|
961
|
-
- spec/
|
962
|
-
- spec/
|
963
|
-
- spec/
|
964
|
-
- spec/
|
965
|
-
- spec/helpers/icons_helper_spec.rb
|
966
|
-
- spec/helpers/with_navigation_spec.rb
|
967
|
-
- spec/helpers/with_choices_spec.rb
|
968
|
-
- spec/helpers/avatar_helper_spec.rb
|
969
|
-
- spec/helpers/email_helper_spec.rb
|
970
|
-
- spec/helpers/exercise_input_helper_spec.rb
|
971
|
-
- spec/helpers/breadcrumbs_helper_spec.rb
|
972
|
-
- spec/helpers/test_results_rendering_spec.rb
|
973
|
-
- spec/helpers/page_title_helper_spec.rb
|
974
|
-
- spec/helpers/authors_helper_spec.rb
|
975
|
-
- spec/helpers/application_helper_spec.rb
|
976
|
-
- spec/javascripts/events-spec.js
|
977
|
-
- spec/javascripts/editors-spec.js
|
985
|
+
- spec/features/exercise_flow_spec.rb
|
986
|
+
- spec/features/exams_flow_spec.rb
|
987
|
+
- spec/javascripts/i18n-spec.js
|
988
|
+
- spec/javascripts/bridge-spec.js
|
989
|
+
- spec/javascripts/timeout-spec.js
|
990
|
+
- spec/javascripts/results-renderers-spec.js
|
978
991
|
- spec/javascripts/kids-button-spec.js
|
979
992
|
- spec/javascripts/timer-spec.js
|
980
|
-
- spec/javascripts/spec-helper.js
|
981
|
-
- spec/javascripts/global-spec.js
|
982
|
-
- spec/javascripts/submissions-store-spec.js
|
983
|
-
- spec/javascripts/results-renderers-spec.js
|
984
|
-
- spec/javascripts/speech-bubble-renderer-spec.js
|
985
|
-
- spec/javascripts/csrf-token-spec.js
|
986
993
|
- spec/javascripts/sync-mode-spec.js
|
987
|
-
- spec/javascripts/
|
988
|
-
- spec/javascripts/
|
989
|
-
- spec/javascripts/elipsis-spec.js
|
994
|
+
- spec/javascripts/events-spec.js
|
995
|
+
- spec/javascripts/editors-spec.js
|
990
996
|
- spec/javascripts/exercise-spec.js
|
991
|
-
- spec/javascripts/
|
997
|
+
- spec/javascripts/elipsis-spec.js
|
998
|
+
- spec/javascripts/upload-spec.js
|
999
|
+
- spec/javascripts/spec-helper.js
|
1000
|
+
- spec/javascripts/submissions-store-spec.js
|
992
1001
|
- spec/javascripts/gamification-spec.js
|
1002
|
+
- spec/javascripts/csrf-token-spec.js
|
1003
|
+
- spec/javascripts/global-spec.js
|
1004
|
+
- spec/javascripts/speech-bubble-renderer-spec.js
|
1005
|
+
- spec/teaspoon_env.rb
|
1006
|
+
- spec/helpers/exercise_input_helper_spec.rb
|
1007
|
+
- spec/helpers/application_helper_spec.rb
|
1008
|
+
- spec/helpers/page_title_helper_spec.rb
|
1009
|
+
- spec/helpers/with_navigation_spec.rb
|
1010
|
+
- spec/helpers/authors_helper_spec.rb
|
1011
|
+
- spec/helpers/email_helper_spec.rb
|
1012
|
+
- spec/helpers/with_choices_spec.rb
|
1013
|
+
- spec/helpers/avatar_helper_spec.rb
|
1014
|
+
- spec/helpers/icons_helper_spec.rb
|
1015
|
+
- spec/helpers/test_results_rendering_spec.rb
|
1016
|
+
- spec/helpers/breadcrumbs_helper_spec.rb
|