mumuki-laboratory 8.1.3 → 8.5.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 +19 -8
- data/app/assets/javascripts/mumuki_laboratory/application/bridge.js +2 -1
- data/app/assets/javascripts/mumuki_laboratory/application/button.js +2 -4
- data/app/assets/javascripts/mumuki_laboratory/application/codemirror-builder.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/codemirror.js +2 -2
- data/app/assets/javascripts/mumuki_laboratory/application/i18n.js +73 -0
- data/app/assets/javascripts/mumuki_laboratory/application/kids.js +22 -1
- data/app/assets/javascripts/mumuki_laboratory/application/kindergarten.js +6 -1
- data/app/assets/javascripts/mumuki_laboratory/application/primary.js +5 -3
- data/app/assets/javascripts/mumuki_laboratory/application/results-renderer.js +28 -1
- data/app/assets/javascripts/mumuki_laboratory/application/submission.js +72 -48
- data/app/assets/stylesheets/mumuki_laboratory/application.scss +1 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/_codemirror-themes.scss +1 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/codemirror-themes/_mu-light.scss +3 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kids.scss +4 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kids_results.scss +1 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_overlap.scss +0 -4
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_terms.scss +4 -0
- data/app/controllers/chapters_controller.rb +9 -5
- data/app/controllers/guide_container_controller.rb +2 -7
- data/app/helpers/assignment_result_helper.rb +1 -1
- data/app/helpers/contextualization_result_helper.rb +0 -8
- data/app/helpers/discussions_helper.rb +12 -4
- data/app/helpers/editor_tabs_helper.rb +1 -1
- data/app/helpers/icons_helper.rb +1 -1
- data/app/helpers/links_helper.rb +1 -1
- data/app/helpers/menu_bar_helper.rb +9 -1
- data/app/helpers/overlapped_buttons_helper.rb +13 -5
- data/app/views/book/show.html.erb +1 -1
- data/app/views/book_discussions/index.html.erb +3 -1
- data/app/views/chapters/show.html.erb +21 -9
- data/app/views/complements/show.html.erb +1 -1
- data/app/views/discussions/_message.html.erb +2 -2
- data/app/views/discussions/index.html.erb +11 -4
- data/app/views/exams/show.html.erb +1 -1
- data/app/views/exercise_solutions/_kids_level_up.html.erb +1 -1
- data/app/views/exercises/_exercise_assignment.html.erb +1 -1
- data/app/views/exercises/_read_only.html.erb +1 -1
- data/app/views/exercises/show.html.erb +2 -2
- data/app/views/layouts/_discussions.html.erb +0 -4
- data/app/views/layouts/_guide.html.erb +9 -36
- data/app/views/layouts/_guide_container.html.erb +28 -0
- data/app/views/layouts/_guide_title_icons.html.erb +9 -0
- data/app/views/layouts/_kids.html.erb +4 -4
- data/app/views/layouts/_kindergarten.html.erb +5 -5
- data/app/views/layouts/_social_media.html.erb +4 -4
- data/app/views/layouts/_timer.html.erb +1 -1
- data/app/views/layouts/application.html.erb +7 -5
- data/app/views/layouts/exercise_inputs/editors/_code.html.erb +1 -6
- data/app/views/layouts/exercise_inputs/editors/_multiple_files.html.erb +4 -9
- data/app/views/layouts/exercise_inputs/forms/_problem_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/layouts/_input_kindergarten.html.erb +1 -1
- data/app/views/layouts/modals/_guide_corollary.html.erb +13 -3
- data/app/views/layouts/modals/_kids_results.html.erb +2 -2
- data/app/views/layouts/modals/_kindergarten_context.html.erb +3 -3
- data/app/views/layouts/modals/_kindergarten_results.html.erb +3 -3
- data/app/views/layouts/modals/_kindergarten_results_aborted.html.erb +2 -2
- data/app/views/layouts/modals/_level_up.html.erb +1 -1
- data/app/views/lessons/show.html.erb +1 -1
- data/app/views/users/_edit_user_form.html.erb +1 -1
- data/app/views/users/_term.html.erb +1 -1
- data/app/views/users/_user_form.html.erb +1 -1
- data/lib/mumuki/laboratory/controllers/results_rendering.rb +2 -1
- data/lib/mumuki/laboratory/engine.rb +1 -1
- data/lib/mumuki/laboratory/locales/en.yml +6 -8
- data/lib/mumuki/laboratory/locales/es-CL.yml +6 -3
- data/lib/mumuki/laboratory/locales/es.yml +9 -10
- data/lib/mumuki/laboratory/locales/pt.yml +6 -8
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/exercise_solutions_controller_spec.rb +3 -2
- data/spec/dummy/db/schema.rb +50 -1
- data/spec/dummy/public/character/animations.json +1 -0
- data/{public → spec/dummy/public}/character/kibi/context.svg +0 -0
- data/{public → spec/dummy/public}/character/kibi/failure.svg +0 -0
- data/{public → spec/dummy/public}/character/kibi/jump.svg +0 -0
- data/spec/dummy/public/character/kibi/passed_with_warnings.svg +4 -0
- data/{public → spec/dummy/public}/character/kibi/success2_l.svg +0 -0
- data/{public → spec/dummy/public}/character/kibi/success_l.svg +0 -0
- data/{public → spec/dummy/public}/character/magnifying_glass/apparition.svg +0 -0
- data/{public → spec/dummy/public}/character/magnifying_glass/loop.svg +0 -0
- data/spec/features/chapters_flow_spec.rb +112 -0
- data/spec/features/login_flow_spec.rb +1 -1
- data/spec/features/terms_flow_spec.rb +2 -0
- data/spec/features/topic_flow_spec.rb +0 -1
- data/spec/helpers/icons_helper_spec.rb +3 -3
- data/spec/helpers/test_results_rendering_spec.rb +8 -8
- data/spec/helpers/with_navigation_spec.rb +14 -14
- 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/gamification-spec.js +2 -2
- data/spec/javascripts/global-spec.js +3 -3
- data/spec/javascripts/i18n-spec.js +82 -0
- data/spec/javascripts/kids-button-spec.js +34 -0
- 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
- metadata +140 -117
- data/spec/dummy/config/database.travis.yml +0 -4
- data/spec/features/chapter_spec.rb +0 -70
@@ -0,0 +1,34 @@
|
|
1
|
+
describe('KidsButton', () => {
|
2
|
+
let button;
|
3
|
+
|
4
|
+
fixture.set(`
|
5
|
+
<div class="mu-kindergarten">
|
6
|
+
<button class="mu-kids-button">Click me<button>
|
7
|
+
<div class="mu-kids-overlay" style="display: none"></div>
|
8
|
+
</div>
|
9
|
+
`);
|
10
|
+
|
11
|
+
beforeEach(() => {
|
12
|
+
mumuki.kids = new mumuki.Kids();
|
13
|
+
button = new mumuki.submission.KidsSubmitButton($('.mu-kids-button'));
|
14
|
+
});
|
15
|
+
|
16
|
+
it('can create button', () => {
|
17
|
+
expect(button).not.toBe(null);
|
18
|
+
});
|
19
|
+
|
20
|
+
it('overlay is hidden by default', () => {
|
21
|
+
expect(mumuki.kids.$overlay.css('display')).toBe('none');
|
22
|
+
});
|
23
|
+
|
24
|
+
it('call showOverlay on wait', () => {
|
25
|
+
button.wait();
|
26
|
+
expect(mumuki.kids.$overlay.css('display')).toBe('block');
|
27
|
+
});
|
28
|
+
|
29
|
+
it('call hideOverlay on continue', () => {
|
30
|
+
button.wait();
|
31
|
+
button.continue();
|
32
|
+
expect(mumuki.kids.$overlay.css('display')).toBe('none');
|
33
|
+
});
|
34
|
+
});
|
@@ -1,17 +1,17 @@
|
|
1
1
|
describe('results renderers', () => {
|
2
2
|
it('can compute class for status', () => {
|
3
3
|
expect(mumuki.renderers.classForStatus('passed')).toEqual('success');
|
4
|
-
})
|
4
|
+
});
|
5
5
|
|
6
6
|
it('can compute icon for status', () => {
|
7
7
|
expect(mumuki.renderers.iconForStatus('pending')).toEqual('fa-circle');
|
8
|
-
})
|
8
|
+
});
|
9
9
|
|
10
10
|
it('can compute progress list item for status', () => {
|
11
11
|
expect(mumuki.renderers.progressListItemClassForStatus('passed_with_warnings')).toEqual('progress-list-item text-center warning ');
|
12
|
-
})
|
12
|
+
});
|
13
13
|
|
14
14
|
it('can compute progress list item for status when active', () => {
|
15
15
|
expect(mumuki.renderers.progressListItemClassForStatus('failed', true)).toEqual('progress-list-item text-center danger active');
|
16
|
-
})
|
17
|
-
})
|
16
|
+
});
|
17
|
+
});
|
@@ -6,39 +6,39 @@ describe("SubmissionsStore", () => {
|
|
6
6
|
const passedEmptyProgramSubmissionAndResult = { submission: emptyProgramSubmission, result: passedSubmissionResult };
|
7
7
|
|
8
8
|
beforeEach(() => {
|
9
|
-
window.localStorage.clear()
|
9
|
+
window.localStorage.clear();
|
10
10
|
});
|
11
11
|
|
12
12
|
describe('getLastSubmission', () => {
|
13
13
|
it("answers null if submission not present", () => {
|
14
|
-
expect(mumuki.SubmissionsStore.getLastSubmissionAndResult(1)).toBe(null)
|
14
|
+
expect(mumuki.SubmissionsStore.getLastSubmissionAndResult(1)).toBe(null);
|
15
15
|
});
|
16
16
|
|
17
17
|
it("answers the last submission result if already sent", () => {
|
18
|
-
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult)
|
19
|
-
expect(mumuki.SubmissionsStore.getLastSubmissionAndResult(1)).toEqual(passedEmptyProgramSubmissionAndResult)
|
18
|
+
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult);
|
19
|
+
expect(mumuki.SubmissionsStore.getLastSubmissionAndResult(1)).toEqual(passedEmptyProgramSubmissionAndResult);
|
20
20
|
});
|
21
21
|
});
|
22
22
|
|
23
23
|
describe('getLastSubmissionStatus', () => {
|
24
24
|
it("answers pending if submission not present", () => {
|
25
|
-
expect(mumuki.SubmissionsStore.getLastSubmissionStatus(1)).toBe('pending')
|
25
|
+
expect(mumuki.SubmissionsStore.getLastSubmissionStatus(1)).toBe('pending');
|
26
26
|
});
|
27
27
|
|
28
28
|
it("answers the last submission status if previously sent", () => {
|
29
|
-
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult)
|
30
|
-
expect(mumuki.SubmissionsStore.getLastSubmissionStatus(1)).toBe('passed')
|
29
|
+
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult);
|
30
|
+
expect(mumuki.SubmissionsStore.getLastSubmissionStatus(1)).toBe('passed');
|
31
31
|
});
|
32
32
|
});
|
33
33
|
|
34
34
|
describe('getCachedResultFor', () => {
|
35
35
|
it("answers null if submission not present", () => {
|
36
|
-
expect(mumuki.SubmissionsStore.getSubmissionResultFor(1, emptyProgramSubmission)).toBe(null)
|
36
|
+
expect(mumuki.SubmissionsStore.getSubmissionResultFor(1, emptyProgramSubmission)).toBe(null);
|
37
37
|
});
|
38
38
|
|
39
39
|
it("answers the last submission if previously sent", () => {
|
40
|
-
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult)
|
41
|
-
expect(mumuki.SubmissionsStore.getSubmissionResultFor(1, emptyProgramSubmission)).toEqual(passedSubmissionResult)
|
40
|
+
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult);
|
41
|
+
expect(mumuki.SubmissionsStore.getSubmissionResultFor(1, emptyProgramSubmission)).toEqual(passedSubmissionResult);
|
42
42
|
});
|
43
43
|
});
|
44
44
|
|
@@ -90,7 +90,7 @@ describe("SubmissionsStore", () => {
|
|
90
90
|
{solution: {content: ''}},
|
91
91
|
{solution: {content: 'bar'}})).toBe(false);
|
92
92
|
});
|
93
|
-
})
|
93
|
+
});
|
94
94
|
|
95
95
|
describe('classic submissons', () => {
|
96
96
|
it("answers true when they are equal", () => {
|
@@ -122,7 +122,7 @@ describe("SubmissionsStore", () => {
|
|
122
122
|
{'solution[content]': ''},
|
123
123
|
{'solution[content]': 'bar'})).toBe(false);
|
124
124
|
});
|
125
|
-
})
|
125
|
+
});
|
126
126
|
|
127
127
|
describe('multifile submissions', () => {
|
128
128
|
it("answers true when they are equal", () => {
|
@@ -172,6 +172,6 @@ describe("SubmissionsStore", () => {
|
|
172
172
|
'solution[content[index.html]]': 'html foo'
|
173
173
|
})).toBe(false);
|
174
174
|
});
|
175
|
-
})
|
175
|
+
});
|
176
176
|
});
|
177
|
-
})
|
177
|
+
});
|
@@ -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
|
+
});
|
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: 8.
|
4
|
+
version: 8.5.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:
|
11
|
+
date: 2021-02-04 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: 8.
|
33
|
+
version: 8.5.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: 8.
|
40
|
+
version: 8.5.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: mumukit-bridge
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
117
|
+
version: '2.0'
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: '
|
124
|
+
version: '2.0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: muvment
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -193,19 +193,19 @@ dependencies:
|
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
195
|
- !ruby/object:Gem::Dependency
|
196
|
-
name:
|
196
|
+
name: font_awesome5_rails
|
197
197
|
requirement: !ruby/object:Gem::Requirement
|
198
198
|
requirements:
|
199
199
|
- - "~>"
|
200
200
|
- !ruby/object:Gem::Version
|
201
|
-
version: '
|
201
|
+
version: '1.3'
|
202
202
|
type: :runtime
|
203
203
|
prerelease: false
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
205
205
|
requirements:
|
206
206
|
- - "~>"
|
207
207
|
- !ruby/object:Gem::Version
|
208
|
-
version: '
|
208
|
+
version: '1.3'
|
209
209
|
- !ruby/object:Gem::Dependency
|
210
210
|
name: momentjs-rails
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -311,6 +311,9 @@ dependencies:
|
|
311
311
|
- - "~>"
|
312
312
|
- !ruby/object:Gem::Version
|
313
313
|
version: '2.0'
|
314
|
+
- - "<"
|
315
|
+
- !ruby/object:Gem::Version
|
316
|
+
version: '2.2'
|
314
317
|
type: :development
|
315
318
|
prerelease: false
|
316
319
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -318,6 +321,9 @@ dependencies:
|
|
318
321
|
- - "~>"
|
319
322
|
- !ruby/object:Gem::Version
|
320
323
|
version: '2.0'
|
324
|
+
- - "<"
|
325
|
+
- !ruby/object:Gem::Version
|
326
|
+
version: '2.2'
|
321
327
|
- !ruby/object:Gem::Dependency
|
322
328
|
name: webdrivers
|
323
329
|
requirement: !ruby/object:Gem::Requirement
|
@@ -364,6 +370,7 @@ files:
|
|
364
370
|
- app/assets/javascripts/mumuki_laboratory/application/exercise.js
|
365
371
|
- app/assets/javascripts/mumuki_laboratory/application/free-form.js
|
366
372
|
- app/assets/javascripts/mumuki_laboratory/application/gamification.js
|
373
|
+
- app/assets/javascripts/mumuki_laboratory/application/i18n.js
|
367
374
|
- app/assets/javascripts/mumuki_laboratory/application/inputs.js
|
368
375
|
- app/assets/javascripts/mumuki_laboratory/application/interval.js
|
369
376
|
- app/assets/javascripts/mumuki_laboratory/application/kids.js
|
@@ -392,6 +399,7 @@ files:
|
|
392
399
|
- app/assets/javascripts/mumuki_laboratory/application/user.js
|
393
400
|
- app/assets/stylesheets/mumuki_laboratory/application.scss
|
394
401
|
- app/assets/stylesheets/mumuki_laboratory/application/_alerts.scss
|
402
|
+
- app/assets/stylesheets/mumuki_laboratory/application/_codemirror-themes.scss
|
395
403
|
- app/assets/stylesheets/mumuki_laboratory/application/_errors.scss
|
396
404
|
- app/assets/stylesheets/mumuki_laboratory/application/_fonts.scss
|
397
405
|
- app/assets/stylesheets/mumuki_laboratory/application/_invitations.scss
|
@@ -401,6 +409,7 @@ files:
|
|
401
409
|
- app/assets/stylesheets/mumuki_laboratory/application/_modules.scss
|
402
410
|
- app/assets/stylesheets/mumuki_laboratory/application/_tooltip.scss
|
403
411
|
- app/assets/stylesheets/mumuki_laboratory/application/_vendor.scss
|
412
|
+
- app/assets/stylesheets/mumuki_laboratory/application/codemirror-themes/_mu-light.scss
|
404
413
|
- app/assets/stylesheets/mumuki_laboratory/application/hovers.scss
|
405
414
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_avatar.scss
|
406
415
|
- app/assets/stylesheets/mumuki_laboratory/application/modules/_book_header.scss
|
@@ -552,6 +561,8 @@ files:
|
|
552
561
|
- app/views/layouts/_error.html.erb
|
553
562
|
- app/views/layouts/_exercise_skipped.html.erb
|
554
563
|
- app/views/layouts/_guide.html.erb
|
564
|
+
- app/views/layouts/_guide_container.html.erb
|
565
|
+
- app/views/layouts/_guide_title_icons.html.erb
|
555
566
|
- app/views/layouts/_kids.html.erb
|
556
567
|
- app/views/layouts/_kindergarten.html.erb
|
557
568
|
- app/views/layouts/_main.html.erb
|
@@ -664,13 +675,6 @@ files:
|
|
664
675
|
- lib/tasks/messages.rake
|
665
676
|
- lib/tasks/users.rake
|
666
677
|
- public/422.html
|
667
|
-
- public/character/kibi/context.svg
|
668
|
-
- public/character/kibi/failure.svg
|
669
|
-
- public/character/kibi/jump.svg
|
670
|
-
- public/character/kibi/success2_l.svg
|
671
|
-
- public/character/kibi/success_l.svg
|
672
|
-
- public/character/magnifying_glass/apparition.svg
|
673
|
-
- public/character/magnifying_glass/loop.svg
|
674
678
|
- public/compass_rose.svg
|
675
679
|
- public/email-banner.png
|
676
680
|
- public/favicon.ico
|
@@ -704,7 +708,6 @@ files:
|
|
704
708
|
- spec/dummy/config/application.rb
|
705
709
|
- spec/dummy/config/boot.rb
|
706
710
|
- spec/dummy/config/cable.yml
|
707
|
-
- spec/dummy/config/database.travis.yml
|
708
711
|
- spec/dummy/config/database.yml
|
709
712
|
- spec/dummy/config/environment.rb
|
710
713
|
- spec/dummy/config/environments/development.rb
|
@@ -723,6 +726,14 @@ files:
|
|
723
726
|
- spec/dummy/db/seeds.rb
|
724
727
|
- spec/dummy/package.json
|
725
728
|
- spec/dummy/public/character/animations.json
|
729
|
+
- spec/dummy/public/character/kibi/context.svg
|
730
|
+
- spec/dummy/public/character/kibi/failure.svg
|
731
|
+
- spec/dummy/public/character/kibi/jump.svg
|
732
|
+
- spec/dummy/public/character/kibi/passed_with_warnings.svg
|
733
|
+
- spec/dummy/public/character/kibi/success2_l.svg
|
734
|
+
- spec/dummy/public/character/kibi/success_l.svg
|
735
|
+
- spec/dummy/public/character/magnifying_glass/apparition.svg
|
736
|
+
- spec/dummy/public/character/magnifying_glass/loop.svg
|
726
737
|
- spec/dummy/public/error/401.svg
|
727
738
|
- spec/dummy/public/error/403.svg
|
728
739
|
- spec/dummy/public/error/404.svg
|
@@ -733,7 +744,7 @@ files:
|
|
733
744
|
- spec/dummy/public/error/timeout_3.svg
|
734
745
|
- spec/dummy/public/medal/outline.svg
|
735
746
|
- spec/evaluation_helper.rb
|
736
|
-
- spec/features/
|
747
|
+
- spec/features/chapters_flow_spec.rb
|
737
748
|
- spec/features/complements_flow_spec.rb
|
738
749
|
- spec/features/disable_user_flow_spec.rb
|
739
750
|
- spec/features/disabled_organization_flow_spec.rb
|
@@ -778,6 +789,8 @@ files:
|
|
778
789
|
- spec/javascripts/exercise-spec.js
|
779
790
|
- spec/javascripts/gamification-spec.js
|
780
791
|
- spec/javascripts/global-spec.js
|
792
|
+
- spec/javascripts/i18n-spec.js
|
793
|
+
- spec/javascripts/kids-button-spec.js
|
781
794
|
- spec/javascripts/results-renderers-spec.js
|
782
795
|
- spec/javascripts/spec-helper.js
|
783
796
|
- spec/javascripts/speech-bubble-renderer-spec.js
|
@@ -849,121 +862,131 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
849
862
|
- !ruby/object:Gem::Version
|
850
863
|
version: '0'
|
851
864
|
requirements: []
|
852
|
-
|
865
|
+
rubyforge_project:
|
866
|
+
rubygems_version: 2.7.6
|
853
867
|
signing_key:
|
854
868
|
specification_version: 4
|
855
869
|
summary: Code assement web application for the Mumuki Platform.
|
856
870
|
test_files:
|
857
|
-
- spec/
|
871
|
+
- spec/mailers/user_mailer_spec.rb
|
872
|
+
- spec/mailers/previews/user_mailer_preview.rb
|
873
|
+
- spec/api_helper.rb
|
874
|
+
- spec/dummy/config/boot.rb
|
875
|
+
- spec/dummy/config/secrets.yml
|
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
|
897
|
+
- spec/dummy/bin/bundle
|
898
|
+
- spec/dummy/bin/update
|
899
|
+
- spec/dummy/bin/setup
|
900
|
+
- spec/dummy/public/character/magnifying_glass/apparition.svg
|
901
|
+
- spec/dummy/public/character/magnifying_glass/loop.svg
|
902
|
+
- spec/dummy/public/character/kibi/success2_l.svg
|
903
|
+
- spec/dummy/public/character/kibi/context.svg
|
904
|
+
- spec/dummy/public/character/kibi/success_l.svg
|
905
|
+
- spec/dummy/public/character/kibi/failure.svg
|
906
|
+
- spec/dummy/public/character/kibi/jump.svg
|
907
|
+
- spec/dummy/public/character/kibi/passed_with_warnings.svg
|
908
|
+
- spec/dummy/public/character/animations.json
|
909
|
+
- spec/dummy/public/medal/outline.svg
|
910
|
+
- spec/dummy/public/error/timeout_3.svg
|
911
|
+
- spec/dummy/public/error/timeout_1.svg
|
912
|
+
- spec/dummy/public/error/403.svg
|
913
|
+
- spec/dummy/public/error/410.svg
|
914
|
+
- spec/dummy/public/error/timeout_2.svg
|
915
|
+
- spec/dummy/public/error/404.svg
|
916
|
+
- spec/dummy/public/error/401.svg
|
917
|
+
- spec/dummy/public/error/500.svg
|
918
|
+
- spec/dummy/config.ru
|
919
|
+
- spec/dummy/package.json
|
920
|
+
- spec/capybara_helper.rb
|
858
921
|
- spec/controllers/discussions_controller_spec.rb
|
922
|
+
- spec/controllers/courses_api_controller_spec.rb
|
859
923
|
- spec/controllers/organizations_api_controller_spec.rb
|
924
|
+
- spec/controllers/discussions_messages_controller_spec.rb
|
925
|
+
- spec/controllers/exercise_solutions_controller_spec.rb
|
926
|
+
- spec/controllers/api_clients_controller.rb
|
860
927
|
- spec/controllers/chapters_controller_spec.rb
|
928
|
+
- spec/controllers/students_api_controller_spec.rb
|
929
|
+
- spec/controllers/users_controller_spec.rb
|
930
|
+
- spec/controllers/guide_progress_controller_spec.rb
|
861
931
|
- spec/controllers/invitations_controller_spec.rb
|
932
|
+
- spec/controllers/users_api_controller_spec.rb
|
862
933
|
- spec/controllers/messages_controller_spec.rb
|
863
|
-
- spec/controllers/courses_api_controller_spec.rb
|
864
934
|
- spec/controllers/confirmations_controller_spec.rb
|
865
|
-
- spec/controllers/students_api_controller_spec.rb
|
866
|
-
- spec/controllers/api_clients_controller.rb
|
867
|
-
- spec/controllers/exercise_solutions_controller_spec.rb
|
868
|
-
- spec/controllers/discussions_messages_controller_spec.rb
|
869
|
-
- spec/controllers/users_api_controller_spec.rb
|
870
|
-
- spec/controllers/users_controller_spec.rb
|
871
935
|
- spec/spec_helper.rb
|
872
|
-
- spec/api_helper.rb
|
873
|
-
- spec/mailers/user_mailer_spec.rb
|
874
|
-
- spec/mailers/previews/user_mailer_preview.rb
|
875
|
-
- spec/javascripts/elipsis-spec.js
|
876
|
-
- spec/javascripts/csrf-token-spec.js
|
877
|
-
- spec/javascripts/global-spec.js
|
878
|
-
- spec/javascripts/events-spec.js
|
879
|
-
- spec/javascripts/gamification-spec.js
|
880
|
-
- spec/javascripts/sync-mode-spec.js
|
881
|
-
- spec/javascripts/exercise-spec.js
|
882
|
-
- spec/javascripts/timer-spec.js
|
883
|
-
- spec/javascripts/editors-spec.js
|
884
|
-
- spec/javascripts/spec-helper.js
|
885
|
-
- spec/javascripts/speech-bubble-renderer-spec.js
|
886
|
-
- spec/javascripts/submissions-store-spec.js
|
887
|
-
- spec/javascripts/results-renderers-spec.js
|
888
|
-
- spec/javascripts/bridge-spec.js
|
889
|
-
- spec/javascripts/timeout-spec.js
|
890
|
-
- spec/helpers/avatar_helper_spec.rb
|
891
|
-
- spec/helpers/with_navigation_spec.rb
|
892
|
-
- spec/helpers/exercise_input_helper_spec.rb
|
893
|
-
- spec/helpers/authors_helper_spec.rb
|
894
|
-
- spec/helpers/with_choices_spec.rb
|
895
|
-
- spec/helpers/application_helper_spec.rb
|
896
|
-
- spec/helpers/breadcrumbs_helper_spec.rb
|
897
|
-
- spec/helpers/email_helper_spec.rb
|
898
|
-
- spec/helpers/page_title_helper_spec.rb
|
899
|
-
- spec/helpers/test_results_rendering_spec.rb
|
900
|
-
- spec/helpers/icons_helper_spec.rb
|
901
|
-
- spec/features/complements_flow_spec.rb
|
902
|
-
- spec/features/progressive_tips_spec.rb
|
903
|
-
- spec/features/runner_assets_spec.rb
|
904
|
-
- spec/features/disable_user_flow_spec.rb
|
905
|
-
- spec/features/links_flow_spec.rb
|
906
|
-
- spec/features/not_found_public_flow_spec.rb
|
907
|
-
- spec/features/standard_flow_spec.rb
|
908
936
|
- spec/features/exercise_flow_spec.rb
|
909
|
-
- spec/features/
|
910
|
-
- spec/features/immersive_redirection_spec.rb
|
911
|
-
- spec/features/topic_flow_spec.rb
|
937
|
+
- spec/features/not_found_private_flow_spec.rb
|
912
938
|
- spec/features/home_private_flow_spec.rb
|
939
|
+
- spec/features/guide_reset_spec.rb
|
913
940
|
- spec/features/profile_flow_spec.rb
|
914
|
-
- spec/features/
|
915
|
-
- spec/features/
|
916
|
-
- spec/features/not_found_private_flow_spec.rb
|
917
|
-
- spec/features/chapter_spec.rb
|
918
|
-
- spec/features/discussion_flow_spec.rb
|
941
|
+
- spec/features/terms_flow_spec.rb
|
942
|
+
- spec/features/links_flow_spec.rb
|
919
943
|
- spec/features/invitations_flow_spec.rb
|
920
|
-
- spec/features/
|
944
|
+
- spec/features/standard_flow_spec.rb
|
945
|
+
- spec/features/login_flow_spec.rb
|
946
|
+
- spec/features/progressive_tips_spec.rb
|
947
|
+
- spec/features/lessons_flow_spec.rb
|
948
|
+
- spec/features/disable_user_flow_spec.rb
|
949
|
+
- spec/features/runner_assets_spec.rb
|
950
|
+
- spec/features/home_public_flow_spec.rb
|
951
|
+
- spec/features/not_found_public_flow_spec.rb
|
921
952
|
- spec/features/guides_flow_spec.rb
|
953
|
+
- spec/features/disabled_organization_flow_spec.rb
|
922
954
|
- spec/features/dynamic_exam_spec.rb
|
923
|
-
- spec/features/
|
924
|
-
- spec/features/
|
925
|
-
- spec/features/
|
926
|
-
- spec/features/
|
927
|
-
- spec/
|
955
|
+
- spec/features/exams_flow_spec.rb
|
956
|
+
- spec/features/topic_flow_spec.rb
|
957
|
+
- spec/features/chapters_flow_spec.rb
|
958
|
+
- spec/features/discussion_flow_spec.rb
|
959
|
+
- spec/features/menu_bar_spec.rb
|
960
|
+
- spec/features/immersive_redirection_spec.rb
|
961
|
+
- spec/features/complements_flow_spec.rb
|
928
962
|
- spec/login_helper.rb
|
929
|
-
- spec/dummy/db/seeds.rb
|
930
|
-
- spec/dummy/db/schema.rb
|
931
|
-
- spec/dummy/public/character/animations.json
|
932
|
-
- spec/dummy/public/error/500.svg
|
933
|
-
- spec/dummy/public/error/timeout_2.svg
|
934
|
-
- spec/dummy/public/error/401.svg
|
935
|
-
- spec/dummy/public/error/timeout_3.svg
|
936
|
-
- spec/dummy/public/error/410.svg
|
937
|
-
- spec/dummy/public/error/404.svg
|
938
|
-
- spec/dummy/public/error/timeout_1.svg
|
939
|
-
- spec/dummy/public/error/403.svg
|
940
|
-
- spec/dummy/public/medal/outline.svg
|
941
|
-
- spec/dummy/package.json
|
942
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
943
|
-
- spec/dummy/config/initializers/wrap_parameters.rb
|
944
|
-
- spec/dummy/config/initializers/cookies_serializer.rb
|
945
|
-
- spec/dummy/config/initializers/assets.rb
|
946
|
-
- spec/dummy/config/database.yml
|
947
|
-
- spec/dummy/config/routes.rb
|
948
|
-
- spec/dummy/config/cable.yml
|
949
|
-
- spec/dummy/config/spring.rb
|
950
|
-
- spec/dummy/config/boot.rb
|
951
|
-
- spec/dummy/config/puma.rb
|
952
|
-
- spec/dummy/config/environments/development.rb
|
953
|
-
- spec/dummy/config/environments/test.rb
|
954
|
-
- spec/dummy/config/database.travis.yml
|
955
|
-
- spec/dummy/config/rabbit.yml
|
956
|
-
- spec/dummy/config/secrets.yml
|
957
|
-
- spec/dummy/config/locales/en.yml
|
958
|
-
- spec/dummy/config/application.rb
|
959
|
-
- spec/dummy/config/environment.rb
|
960
|
-
- spec/dummy/Rakefile
|
961
|
-
- spec/dummy/bin/setup
|
962
|
-
- spec/dummy/bin/rake
|
963
|
-
- spec/dummy/bin/bundle
|
964
|
-
- spec/dummy/bin/update
|
965
|
-
- spec/dummy/bin/yarn
|
966
|
-
- spec/dummy/bin/rails
|
967
|
-
- spec/dummy/config.ru
|
968
963
|
- spec/teaspoon_env.rb
|
969
|
-
- spec/
|
964
|
+
- spec/evaluation_helper.rb
|
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
|
978
|
+
- spec/javascripts/kids-button-spec.js
|
979
|
+
- 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
|
+
- spec/javascripts/sync-mode-spec.js
|
987
|
+
- spec/javascripts/bridge-spec.js
|
988
|
+
- spec/javascripts/i18n-spec.js
|
989
|
+
- spec/javascripts/elipsis-spec.js
|
990
|
+
- spec/javascripts/exercise-spec.js
|
991
|
+
- spec/javascripts/timeout-spec.js
|
992
|
+
- spec/javascripts/gamification-spec.js
|