mumuki-laboratory 9.0.0 → 9.0.5
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/certificate.js +17 -0
- data/app/assets/javascripts/mumuki_laboratory/application/discussions.js +43 -2
- data/app/assets/javascripts/mumuki_laboratory/application/faqs.js +90 -0
- data/app/assets/javascripts/mumuki_laboratory/application/organization.js +32 -0
- data/app/assets/javascripts/mumuki_laboratory/application/submissions-store.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/user.js +49 -5
- data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +3 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_activity.scss +12 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_certificate.scss +33 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +14 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_faqs.scss +84 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_menu.scss +30 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_profile.scss +1 -0
- data/app/controllers/certificates_controller.rb +28 -0
- data/app/controllers/concerns/with_certificate_render.rb +25 -0
- data/app/controllers/discussions_messages_controller.rb +6 -2
- data/app/controllers/faqs_controller.rb +6 -0
- data/app/controllers/users_controller.rb +17 -0
- data/app/helpers/certificate_helper.rb +13 -0
- data/app/helpers/discussions_helper.rb +5 -1
- data/app/helpers/links_helper.rb +9 -1
- data/app/helpers/menu_bar_helper.rb +14 -10
- data/app/helpers/user_activity_helper.rb +48 -0
- data/app/helpers/user_menu_helper.rb +27 -5
- data/app/mailers/application_mailer.rb +0 -1
- data/app/mailers/user_mailer.rb +9 -0
- data/app/views/certificates/_certificate.html.erb +44 -0
- data/app/views/certificates/_download.html.erb +20 -0
- data/app/views/certificates/verify.html.erb +40 -0
- data/app/views/discussions/_description_message.html.erb +1 -1
- data/app/views/discussions/_message.html.erb +1 -1
- data/app/views/discussions/_new_message.html.erb +13 -2
- data/app/views/discussions/new.html.erb +1 -1
- data/app/views/faqs/index.html.erb +20 -0
- data/app/views/layouts/_main.html.erb +4 -0
- data/app/views/layouts/_user_menu.html.erb +12 -16
- data/app/views/layouts/application.html.erb +6 -1
- data/app/views/layouts/exercise_inputs/editors/_code.html.erb +2 -1
- data/app/views/user_mailer/certificate.html.erb +339 -0
- data/app/views/user_mailer/certificate.text.erb +10 -0
- data/app/views/users/_activity_indicator.html.erb +17 -0
- data/app/views/users/activity.html.erb +37 -0
- data/app/views/users/certificates.html.erb +32 -0
- data/config/routes.rb +9 -0
- data/lib/mumuki/laboratory/extensions.rb +1 -0
- data/lib/mumuki/laboratory/extensions/date_and_time.rb +11 -0
- data/lib/mumuki/laboratory/locales/en.yml +20 -1
- data/lib/mumuki/laboratory/locales/es-CL.yml +25 -3
- data/lib/mumuki/laboratory/locales/es.yml +25 -3
- data/lib/mumuki/laboratory/locales/pt.yml +26 -1
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/certificates_controller_spec.rb +15 -0
- data/spec/controllers/discussions_messages_controller_spec.rb +20 -1
- data/spec/dummy/db/schema.rb +5 -1
- data/spec/features/certificate_programs_flow_spec.rb +17 -0
- data/spec/features/discussion_flow_spec.rb +2 -0
- data/spec/features/menu_bar_spec.rb +20 -0
- data/spec/features/profile_flow_spec.rb +12 -0
- data/spec/features/user_activity_flow_spec.rb +65 -0
- data/spec/helpers/application_helper_spec.rb +10 -0
- data/spec/helpers/certificate_helper_spec.rb +15 -0
- data/spec/helpers/user_activity_helper_spec.rb +32 -0
- metadata +171 -99
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.0.
|
4
|
+
version: 9.0.5
|
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-03-
|
11
|
+
date: 2021-03-19 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.0.
|
33
|
+
version: 9.0.5
|
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.0.
|
40
|
+
version: 9.0.5
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: mumukit-bridge
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -290,6 +290,48 @@ dependencies:
|
|
290
290
|
- - "~>"
|
291
291
|
- !ruby/object:Gem::Version
|
292
292
|
version: '3.7'
|
293
|
+
- !ruby/object:Gem::Dependency
|
294
|
+
name: wkhtmltopdf-binary
|
295
|
+
requirement: !ruby/object:Gem::Requirement
|
296
|
+
requirements:
|
297
|
+
- - "~>"
|
298
|
+
- !ruby/object:Gem::Version
|
299
|
+
version: '0.12'
|
300
|
+
type: :runtime
|
301
|
+
prerelease: false
|
302
|
+
version_requirements: !ruby/object:Gem::Requirement
|
303
|
+
requirements:
|
304
|
+
- - "~>"
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
version: '0.12'
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: wicked_pdf
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - "~>"
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: '1.4'
|
314
|
+
type: :runtime
|
315
|
+
prerelease: false
|
316
|
+
version_requirements: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - "~>"
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: '1.4'
|
321
|
+
- !ruby/object:Gem::Dependency
|
322
|
+
name: rqrcode
|
323
|
+
requirement: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - "~>"
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '1.2'
|
328
|
+
type: :runtime
|
329
|
+
prerelease: false
|
330
|
+
version_requirements: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - "~>"
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: '1.2'
|
293
335
|
- !ruby/object:Gem::Dependency
|
294
336
|
name: pg
|
295
337
|
requirement: !ruby/object:Gem::Requirement
|
@@ -356,6 +398,7 @@ files:
|
|
356
398
|
- app/assets/javascripts/mumuki_laboratory/application/assets-loader.js
|
357
399
|
- app/assets/javascripts/mumuki_laboratory/application/bridge.js
|
358
400
|
- app/assets/javascripts/mumuki_laboratory/application/button.js
|
401
|
+
- app/assets/javascripts/mumuki_laboratory/application/certificate.js
|
359
402
|
- app/assets/javascripts/mumuki_laboratory/application/characters.js
|
360
403
|
- app/assets/javascripts/mumuki_laboratory/application/codemirror-builder.js
|
361
404
|
- app/assets/javascripts/mumuki_laboratory/application/codemirror.js
|
@@ -368,6 +411,7 @@ files:
|
|
368
411
|
- app/assets/javascripts/mumuki_laboratory/application/elipsis.js
|
369
412
|
- app/assets/javascripts/mumuki_laboratory/application/events.js
|
370
413
|
- app/assets/javascripts/mumuki_laboratory/application/exercise.js
|
414
|
+
- app/assets/javascripts/mumuki_laboratory/application/faqs.js
|
371
415
|
- app/assets/javascripts/mumuki_laboratory/application/free-form.js
|
372
416
|
- app/assets/javascripts/mumuki_laboratory/application/gamification.js
|
373
417
|
- app/assets/javascripts/mumuki_laboratory/application/i18n.js
|
@@ -383,6 +427,7 @@ files:
|
|
383
427
|
- app/assets/javascripts/mumuki_laboratory/application/multiple-files.js
|
384
428
|
- app/assets/javascripts/mumuki_laboratory/application/multiple-scenarios.js
|
385
429
|
- app/assets/javascripts/mumuki_laboratory/application/number-counter.js
|
430
|
+
- app/assets/javascripts/mumuki_laboratory/application/organization.js
|
386
431
|
- app/assets/javascripts/mumuki_laboratory/application/pin.js
|
387
432
|
- app/assets/javascripts/mumuki_laboratory/application/popover.js
|
388
433
|
- app/assets/javascripts/mumuki_laboratory/application/primary.js
|
@@ -411,9 +456,11 @@ files:
|
|
411
456
|
- app/assets/stylesheets/mumuki_laboratory/application/_vendor.scss
|
412
457
|
- app/assets/stylesheets/mumuki_laboratory/application/codemirror-themes/_mu-light.scss
|
413
458
|
- app/assets/stylesheets/mumuki_laboratory/application/hovers.scss
|
459
|
+
- app/assets/stylesheets/mumuki_laboratory/application/modules/_activity.scss
|
414
460
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_avatar.scss
|
415
461
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_book_header.scss
|
416
462
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_breadcrumb.scss
|
463
|
+
- app/assets/stylesheets/mumuki_laboratory/application/modules/_certificate.scss
|
417
464
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_checkboxes.scss
|
418
465
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_console.scss
|
419
466
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_content_show.scss
|
@@ -423,6 +470,7 @@ files:
|
|
423
470
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_editor.scss
|
424
471
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_exercise_assignment.scss
|
425
472
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_exercise_results.scss
|
473
|
+
- app/assets/stylesheets/mumuki_laboratory/application/modules/_faqs.scss
|
426
474
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_flash.scss
|
427
475
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_gs-board.scss
|
428
476
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_guide_corollary.scss
|
@@ -455,12 +503,14 @@ files:
|
|
455
503
|
- app/controllers/assets_controller.rb
|
456
504
|
- app/controllers/book_controller.rb
|
457
505
|
- app/controllers/book_discussions_controller.rb
|
506
|
+
- app/controllers/certificates_controller.rb
|
458
507
|
- app/controllers/chapters_controller.rb
|
459
508
|
- app/controllers/complements_controller.rb
|
460
509
|
- app/controllers/concerns/on_base_organization_only.rb
|
461
510
|
- app/controllers/concerns/organizations_controller_template.rb
|
462
511
|
- app/controllers/concerns/users_controller_template.rb
|
463
512
|
- app/controllers/concerns/with_authorization.rb
|
513
|
+
- app/controllers/concerns/with_certificate_render.rb
|
464
514
|
- app/controllers/concerns/with_errors_filter.rb
|
465
515
|
- app/controllers/concerns/with_user_discussion_validation.rb
|
466
516
|
- app/controllers/concerns/with_user_params.rb
|
@@ -474,6 +524,7 @@ files:
|
|
474
524
|
- app/controllers/exercise_solutions_controller.rb
|
475
525
|
- app/controllers/exercise_tries_controller.rb
|
476
526
|
- app/controllers/exercises_controller.rb
|
527
|
+
- app/controllers/faqs_controller.rb
|
477
528
|
- app/controllers/guide_container_controller.rb
|
478
529
|
- app/controllers/guide_progress_controller.rb
|
479
530
|
- app/controllers/guides_controller.rb
|
@@ -490,6 +541,7 @@ files:
|
|
490
541
|
- app/helpers/authors_helper.rb
|
491
542
|
- app/helpers/avatar_helper.rb
|
492
543
|
- app/helpers/breadcrumbs_helper.rb
|
544
|
+
- app/helpers/certificate_helper.rb
|
493
545
|
- app/helpers/choices_helper.rb
|
494
546
|
- app/helpers/concerns/with_student_path_navigation.rb
|
495
547
|
- app/helpers/concerns/with_student_path_navigation/continue_navigation.rb
|
@@ -520,6 +572,7 @@ files:
|
|
520
572
|
- app/helpers/progress_bar_helper.rb
|
521
573
|
- app/helpers/progress_helper.rb
|
522
574
|
- app/helpers/runner_assets_helper.rb
|
575
|
+
- app/helpers/user_activity_helper.rb
|
523
576
|
- app/helpers/user_menu_helper.rb
|
524
577
|
- app/mailers/application_mailer.rb
|
525
578
|
- app/mailers/user_mailer.rb
|
@@ -527,6 +580,9 @@ files:
|
|
527
580
|
- app/views/book/_header.html.erb
|
528
581
|
- app/views/book/show.html.erb
|
529
582
|
- app/views/book_discussions/index.html.erb
|
583
|
+
- app/views/certificates/_certificate.html.erb
|
584
|
+
- app/views/certificates/_download.html.erb
|
585
|
+
- app/views/certificates/verify.html.erb
|
530
586
|
- app/views/chapters/show.html.erb
|
531
587
|
- app/views/complements/show.html.erb
|
532
588
|
- app/views/discussions/_description_message.html.erb
|
@@ -562,6 +618,7 @@ files:
|
|
562
618
|
- app/views/exercises/_exercise_title_icons.html.erb
|
563
619
|
- app/views/exercises/_read_only.html.erb
|
564
620
|
- app/views/exercises/show.html.erb
|
621
|
+
- app/views/faqs/index.html.erb
|
565
622
|
- app/views/guides/_guide.html.erb
|
566
623
|
- app/views/guides/_guide_container.html.erb
|
567
624
|
- app/views/guides/_guide_title_icons.html.erb
|
@@ -643,13 +700,18 @@ files:
|
|
643
700
|
- app/views/user_mailer/2nd_reminder.text.erb
|
644
701
|
- app/views/user_mailer/3rd_reminder.html.erb
|
645
702
|
- app/views/user_mailer/3rd_reminder.text.erb
|
703
|
+
- app/views/user_mailer/certificate.html.erb
|
704
|
+
- app/views/user_mailer/certificate.text.erb
|
646
705
|
- app/views/user_mailer/no_submissions_reminder.html.erb
|
647
706
|
- app/views/user_mailer/no_submissions_reminder.text.erb
|
707
|
+
- app/views/users/_activity_indicator.html.erb
|
648
708
|
- app/views/users/_avatar_list.html.erb
|
649
709
|
- app/views/users/_edit_user_form.html.erb
|
650
710
|
- app/views/users/_profile_fields.html.erb
|
651
711
|
- app/views/users/_term.html.erb
|
652
712
|
- app/views/users/_user_form.html.erb
|
713
|
+
- app/views/users/activity.html.erb
|
714
|
+
- app/views/users/certificates.html.erb
|
653
715
|
- app/views/users/discussions.html.erb
|
654
716
|
- app/views/users/edit.html.erb
|
655
717
|
- app/views/users/messages.html.erb
|
@@ -678,6 +740,7 @@ files:
|
|
678
740
|
- lib/mumuki/laboratory/engine.rb
|
679
741
|
- lib/mumuki/laboratory/events/events.rb
|
680
742
|
- lib/mumuki/laboratory/extensions.rb
|
743
|
+
- lib/mumuki/laboratory/extensions/date_and_time.rb
|
681
744
|
- lib/mumuki/laboratory/extensions/request.rb
|
682
745
|
- lib/mumuki/laboratory/locales/datetime.es.yml
|
683
746
|
- lib/mumuki/laboratory/locales/en.yml
|
@@ -700,6 +763,7 @@ files:
|
|
700
763
|
- spec/api_helper.rb
|
701
764
|
- spec/capybara_helper.rb
|
702
765
|
- spec/controllers/api_clients_controller.rb
|
766
|
+
- spec/controllers/certificates_controller_spec.rb
|
703
767
|
- spec/controllers/chapters_controller_spec.rb
|
704
768
|
- spec/controllers/confirmations_controller_spec.rb
|
705
769
|
- spec/controllers/courses_api_controller_spec.rb
|
@@ -762,6 +826,7 @@ files:
|
|
762
826
|
- spec/dummy/public/error/timeout_3.svg
|
763
827
|
- spec/dummy/public/medal/outline.svg
|
764
828
|
- spec/evaluation_helper.rb
|
829
|
+
- spec/features/certificate_programs_flow_spec.rb
|
765
830
|
- spec/features/chapters_flow_spec.rb
|
766
831
|
- spec/features/complements_flow_spec.rb
|
767
832
|
- spec/features/disable_user_flow_spec.rb
|
@@ -789,15 +854,18 @@ files:
|
|
789
854
|
- spec/features/standard_flow_spec.rb
|
790
855
|
- spec/features/terms_flow_spec.rb
|
791
856
|
- spec/features/topic_flow_spec.rb
|
857
|
+
- spec/features/user_activity_flow_spec.rb
|
792
858
|
- spec/helpers/application_helper_spec.rb
|
793
859
|
- spec/helpers/authors_helper_spec.rb
|
794
860
|
- spec/helpers/avatar_helper_spec.rb
|
795
861
|
- spec/helpers/breadcrumbs_helper_spec.rb
|
862
|
+
- spec/helpers/certificate_helper_spec.rb
|
796
863
|
- spec/helpers/email_helper_spec.rb
|
797
864
|
- spec/helpers/exercise_input_helper_spec.rb
|
798
865
|
- spec/helpers/icons_helper_spec.rb
|
799
866
|
- spec/helpers/page_title_helper_spec.rb
|
800
867
|
- spec/helpers/test_results_rendering_spec.rb
|
868
|
+
- spec/helpers/user_activity_helper_spec.rb
|
801
869
|
- spec/helpers/with_choices_spec.rb
|
802
870
|
- spec/helpers/with_navigation_spec.rb
|
803
871
|
- spec/javascripts/bridge-spec.js
|
@@ -882,135 +950,139 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
882
950
|
- !ruby/object:Gem::Version
|
883
951
|
version: '0'
|
884
952
|
requirements: []
|
885
|
-
|
886
|
-
rubygems_version: 2.7.6
|
953
|
+
rubygems_version: 3.1.2
|
887
954
|
signing_key:
|
888
955
|
specification_version: 4
|
889
956
|
summary: Code assement web application for the Mumuki Platform.
|
890
957
|
test_files:
|
891
|
-
- spec/
|
892
|
-
- spec/
|
893
|
-
- spec/
|
894
|
-
- spec/
|
895
|
-
- spec/
|
896
|
-
- spec/
|
897
|
-
- spec/
|
898
|
-
- spec/
|
899
|
-
- spec/
|
900
|
-
- spec/
|
901
|
-
- spec/
|
902
|
-
- spec/
|
903
|
-
- spec/
|
904
|
-
- spec/
|
905
|
-
- spec/
|
906
|
-
- spec/
|
907
|
-
- spec/
|
908
|
-
- spec/capybara_helper.rb
|
909
|
-
- spec/login_helper.rb
|
910
|
-
- spec/mailers/previews/user_mailer_preview.rb
|
911
|
-
- spec/mailers/user_mailer_spec.rb
|
912
|
-
- spec/spec_helper.rb
|
958
|
+
- spec/dummy/config/cable.yml
|
959
|
+
- spec/dummy/config/application.rb
|
960
|
+
- spec/dummy/config/spring.rb
|
961
|
+
- spec/dummy/config/database.yml
|
962
|
+
- spec/dummy/config/environment.rb
|
963
|
+
- spec/dummy/config/rabbit.yml
|
964
|
+
- spec/dummy/config/puma.rb
|
965
|
+
- spec/dummy/config/locales/en.yml
|
966
|
+
- spec/dummy/config/secrets.yml
|
967
|
+
- spec/dummy/config/environments/development.rb
|
968
|
+
- spec/dummy/config/environments/test.rb
|
969
|
+
- spec/dummy/config/boot.rb
|
970
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
971
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
972
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
973
|
+
- spec/dummy/config/initializers/assets.rb
|
974
|
+
- spec/dummy/config/routes.rb
|
913
975
|
- spec/dummy/package.json
|
976
|
+
- spec/dummy/Rakefile
|
977
|
+
- spec/dummy/config.ru
|
978
|
+
- spec/dummy/bin/rails
|
979
|
+
- spec/dummy/bin/yarn
|
980
|
+
- spec/dummy/bin/rake
|
914
981
|
- spec/dummy/bin/bundle
|
915
982
|
- spec/dummy/bin/update
|
916
983
|
- spec/dummy/bin/setup
|
917
|
-
- spec/dummy/
|
918
|
-
- spec/dummy/bin/rails
|
919
|
-
- spec/dummy/bin/yarn
|
920
|
-
- spec/dummy/public/character/kibi/jump.svg
|
921
|
-
- spec/dummy/public/character/kibi/context.svg
|
922
|
-
- spec/dummy/public/character/kibi/success_l.svg
|
984
|
+
- spec/dummy/public/character/animations.json
|
923
985
|
- spec/dummy/public/character/kibi/failure.svg
|
924
|
-
- spec/dummy/public/character/kibi/
|
986
|
+
- spec/dummy/public/character/kibi/success_l.svg
|
925
987
|
- spec/dummy/public/character/kibi/passed_with_warnings.svg
|
988
|
+
- spec/dummy/public/character/kibi/success2_l.svg
|
989
|
+
- spec/dummy/public/character/kibi/jump.svg
|
990
|
+
- spec/dummy/public/character/kibi/context.svg
|
926
991
|
- spec/dummy/public/character/magnifying_glass/apparition.svg
|
927
992
|
- spec/dummy/public/character/magnifying_glass/loop.svg
|
928
|
-
- spec/dummy/public/
|
929
|
-
- spec/dummy/public/medal/outline.svg
|
930
|
-
- spec/dummy/public/error/403.svg
|
931
|
-
- spec/dummy/public/error/410.svg
|
993
|
+
- spec/dummy/public/error/timeout_2.svg
|
932
994
|
- spec/dummy/public/error/401.svg
|
933
|
-
- spec/dummy/public/error/
|
934
|
-
- spec/dummy/public/error/500.svg
|
995
|
+
- spec/dummy/public/error/403.svg
|
935
996
|
- spec/dummy/public/error/timeout_1.svg
|
936
997
|
- spec/dummy/public/error/timeout_3.svg
|
937
|
-
- spec/dummy/public/error/
|
938
|
-
- spec/dummy/
|
939
|
-
- spec/dummy/
|
998
|
+
- spec/dummy/public/error/404.svg
|
999
|
+
- spec/dummy/public/error/410.svg
|
1000
|
+
- spec/dummy/public/error/500.svg
|
1001
|
+
- spec/dummy/public/medal/outline.svg
|
940
1002
|
- spec/dummy/db/seeds.rb
|
941
|
-
- spec/dummy/
|
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
|
960
|
-
- spec/features/profile_flow_spec.rb
|
961
|
-
- spec/features/not_found_public_flow_spec.rb
|
962
|
-
- spec/features/home_private_flow_spec.rb
|
963
|
-
- spec/features/login_flow_spec.rb
|
964
|
-
- spec/features/links_flow_spec.rb
|
965
|
-
- spec/features/complements_flow_spec.rb
|
1003
|
+
- spec/dummy/db/schema.rb
|
966
1004
|
- spec/features/notifications_flow_spec.rb
|
967
|
-
- spec/features/topic_flow_spec.rb
|
968
|
-
- spec/features/guide_reset_spec.rb
|
969
1005
|
- spec/features/menu_bar_spec.rb
|
970
|
-
- spec/features/
|
971
|
-
- spec/features/dynamic_exam_spec.rb
|
1006
|
+
- spec/features/user_activity_flow_spec.rb
|
972
1007
|
- spec/features/standard_flow_spec.rb
|
973
|
-
- spec/features/
|
974
|
-
- spec/features/
|
975
|
-
- spec/features/
|
976
|
-
- spec/features/
|
1008
|
+
- spec/features/exams_flow_spec.rb
|
1009
|
+
- spec/features/discussion_flow_spec.rb
|
1010
|
+
- spec/features/login_flow_spec.rb
|
1011
|
+
- spec/features/links_flow_spec.rb
|
977
1012
|
- spec/features/terms_flow_spec.rb
|
978
1013
|
- spec/features/progressive_tips_spec.rb
|
979
|
-
- spec/features/
|
980
|
-
- spec/features/
|
981
|
-
- spec/features/invitations_flow_spec.rb
|
1014
|
+
- spec/features/immersive_redirection_spec.rb
|
1015
|
+
- spec/features/not_found_public_flow_spec.rb
|
982
1016
|
- spec/features/guides_flow_spec.rb
|
1017
|
+
- spec/features/chapters_flow_spec.rb
|
1018
|
+
- spec/features/dynamic_exam_spec.rb
|
1019
|
+
- spec/features/home_private_flow_spec.rb
|
1020
|
+
- spec/features/complements_flow_spec.rb
|
1021
|
+
- spec/features/disable_user_flow_spec.rb
|
1022
|
+
- spec/features/disabled_organization_flow_spec.rb
|
983
1023
|
- spec/features/runner_assets_spec.rb
|
984
|
-
- spec/features/
|
1024
|
+
- spec/features/home_public_flow_spec.rb
|
1025
|
+
- spec/features/topic_flow_spec.rb
|
1026
|
+
- spec/features/guide_reset_spec.rb
|
1027
|
+
- spec/features/not_found_private_flow_spec.rb
|
1028
|
+
- spec/features/invitations_flow_spec.rb
|
1029
|
+
- spec/features/certificate_programs_flow_spec.rb
|
1030
|
+
- spec/features/profile_flow_spec.rb
|
1031
|
+
- spec/features/lessons_flow_spec.rb
|
985
1032
|
- spec/features/exercise_flow_spec.rb
|
986
|
-
- spec/
|
987
|
-
- spec/
|
988
|
-
- spec/
|
1033
|
+
- spec/teaspoon_env.rb
|
1034
|
+
- spec/login_helper.rb
|
1035
|
+
- spec/mailers/user_mailer_spec.rb
|
1036
|
+
- spec/mailers/previews/user_mailer_preview.rb
|
1037
|
+
- spec/evaluation_helper.rb
|
1038
|
+
- spec/spec_helper.rb
|
989
1039
|
- spec/javascripts/timeout-spec.js
|
990
|
-
- spec/javascripts/results-renderers-spec.js
|
991
|
-
- spec/javascripts/kids-button-spec.js
|
992
|
-
- spec/javascripts/timer-spec.js
|
993
1040
|
- spec/javascripts/sync-mode-spec.js
|
994
|
-
- spec/javascripts/
|
1041
|
+
- spec/javascripts/kids-button-spec.js
|
1042
|
+
- spec/javascripts/csrf-token-spec.js
|
995
1043
|
- spec/javascripts/editors-spec.js
|
1044
|
+
- spec/javascripts/i18n-spec.js
|
1045
|
+
- spec/javascripts/submissions-store-spec.js
|
996
1046
|
- spec/javascripts/exercise-spec.js
|
1047
|
+
- spec/javascripts/speech-bubble-renderer-spec.js
|
1048
|
+
- spec/javascripts/events-spec.js
|
997
1049
|
- spec/javascripts/elipsis-spec.js
|
998
1050
|
- spec/javascripts/upload-spec.js
|
1051
|
+
- spec/javascripts/results-renderers-spec.js
|
1052
|
+
- spec/javascripts/timer-spec.js
|
999
1053
|
- spec/javascripts/spec-helper.js
|
1000
|
-
- spec/javascripts/
|
1001
|
-
- spec/javascripts/gamification-spec.js
|
1002
|
-
- spec/javascripts/csrf-token-spec.js
|
1054
|
+
- spec/javascripts/bridge-spec.js
|
1003
1055
|
- spec/javascripts/global-spec.js
|
1004
|
-
- spec/javascripts/
|
1005
|
-
- spec/
|
1056
|
+
- spec/javascripts/gamification-spec.js
|
1057
|
+
- spec/controllers/users_api_controller_spec.rb
|
1058
|
+
- spec/controllers/exercise_solutions_controller_spec.rb
|
1059
|
+
- spec/controllers/guide_progress_controller_spec.rb
|
1060
|
+
- spec/controllers/exam_registrations_controller_spec.rb
|
1061
|
+
- spec/controllers/courses_api_controller_spec.rb
|
1062
|
+
- spec/controllers/organizations_api_controller_spec.rb
|
1063
|
+
- spec/controllers/discussions_messages_controller_spec.rb
|
1064
|
+
- spec/controllers/confirmations_controller_spec.rb
|
1065
|
+
- spec/controllers/exam_authorization_requests_controller_spec.rb
|
1066
|
+
- spec/controllers/students_api_controller_spec.rb
|
1067
|
+
- spec/controllers/certificates_controller_spec.rb
|
1068
|
+
- spec/controllers/chapters_controller_spec.rb
|
1069
|
+
- spec/controllers/api_clients_controller.rb
|
1070
|
+
- spec/controllers/discussions_controller_spec.rb
|
1071
|
+
- spec/controllers/users_controller_spec.rb
|
1072
|
+
- spec/controllers/invitations_controller_spec.rb
|
1073
|
+
- spec/controllers/messages_controller_spec.rb
|
1074
|
+
- spec/api_helper.rb
|
1075
|
+
- spec/capybara_helper.rb
|
1076
|
+
- spec/helpers/authors_helper_spec.rb
|
1006
1077
|
- spec/helpers/exercise_input_helper_spec.rb
|
1007
|
-
- spec/helpers/
|
1008
|
-
- spec/helpers/
|
1078
|
+
- spec/helpers/avatar_helper_spec.rb
|
1079
|
+
- spec/helpers/certificate_helper_spec.rb
|
1080
|
+
- spec/helpers/breadcrumbs_helper_spec.rb
|
1081
|
+
- spec/helpers/with_choices_spec.rb
|
1009
1082
|
- spec/helpers/with_navigation_spec.rb
|
1010
|
-
- spec/helpers/authors_helper_spec.rb
|
1011
1083
|
- spec/helpers/email_helper_spec.rb
|
1012
|
-
- spec/helpers/
|
1013
|
-
- spec/helpers/
|
1084
|
+
- spec/helpers/user_activity_helper_spec.rb
|
1085
|
+
- spec/helpers/page_title_helper_spec.rb
|
1086
|
+
- spec/helpers/application_helper_spec.rb
|
1014
1087
|
- spec/helpers/icons_helper_spec.rb
|
1015
1088
|
- spec/helpers/test_results_rendering_spec.rb
|
1016
|
-
- spec/helpers/breadcrumbs_helper_spec.rb
|