github-to-canvas-quiz 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NOTES.md +2 -1
- data/lib/github_to_canvas_quiz/model/quiz.rb +1 -1
- data/lib/github_to_canvas_quiz/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92070ddfabd669585e03a0483a6c037285ede7ef273203b9f657ca2d8a31591a
|
4
|
+
data.tar.gz: 793083a3619e931c5a0f443186b851a30c62dcfc165e3c993ea418ba896b6506
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ab93d1c07ccd0552abda64b9fcc7e5b1eb23f084f8386f1c6287531471858eb9887555799ea1c7c942b1a4216d04d0f2ced48b7d3502874c76fac04c6f1fc4c
|
7
|
+
data.tar.gz: 638e64bc77c6de8db38526556e35c9f2a9b84e7a74afed6be9d30b034761671418f0bf9e3f362f9064aa594122dea34f155251ca7b1921bf3c6f59a1dc123c8e
|
data/NOTES.md
CHANGED
@@ -5,11 +5,12 @@ Features:
|
|
5
5
|
- Add a RepositoryInterface class to allow easier testing of repo commit etc
|
6
6
|
functionality and slim down builder/synchronizer classes
|
7
7
|
- can read the repo data from the directory (local) or url (GitHub API)
|
8
|
-
- rename `build` to `backup` in CLI
|
9
8
|
- move a bunch of methods from build/sync to models?? would make more testable.
|
10
9
|
questionable if the models should be responsible for saving to file
|
11
10
|
system/working with git/interacting with API...
|
12
11
|
- issue when syncing: points not updated when questions added/removed?
|
12
|
+
- create example templates for each question type and make them exportable via
|
13
|
+
the CLI
|
13
14
|
|
14
15
|
Question:
|
15
16
|
|
@@ -25,7 +25,7 @@ module GithubToCanvasQuiz
|
|
25
25
|
'description' => description_with_header,
|
26
26
|
'quiz_type' => 'assignment',
|
27
27
|
'shuffle_answers' => true,
|
28
|
-
'hide_results' =>
|
28
|
+
'hide_results' => nil,
|
29
29
|
'show_correct_answers_last_attempt' => true,
|
30
30
|
'allowed_attempts' => 3,
|
31
31
|
'scoring_policy' => 'keep_highest',
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-to-canvas-quiz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ihollander
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: front_matter_parser
|