canvas_cc 0.0.37 → 0.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a986769cdb70997ccf622aabf954e11ff9101789
|
|
4
|
+
data.tar.gz: cd89cdd658d2951a82f2f0fb932a828bbc146b79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3add05c5f6056b65c4499f0ed7a82d3040e28b66b2e7e07e236fdefc35562e097de170e20b673072858aaf836ce5ba214390989da6b12bc910835dfbaa0e66e
|
|
7
|
+
data.tar.gz: bf9dbc44f36b4b8dc814a4d24c195aac6c7165a558cb2d2fe56351a92a99b5ef6b903ff4e21435cd51c8a30e162fba60b0098742d8d7a8a8025dc9a1ac42b37a
|
data/Gemfile.lock
CHANGED
|
@@ -7,6 +7,7 @@ module CanvasCc::CanvasCC::AssignmentHelper
|
|
|
7
7
|
xml.all_day_date CanvasCc::CC::CCHelper.ims_datetime(assignment.all_day_date) if assignment.all_day_date
|
|
8
8
|
xml.peer_reviews_due_at CanvasCc::CC::CCHelper.ims_datetime(assignment.peer_reviews_due_at) if assignment.peer_reviews_due_at
|
|
9
9
|
xml.assignment_group_identifierref assignment.assignment_group_identifier_ref if assignment.assignment_group_identifier_ref
|
|
10
|
+
xml.grading_standard_identifierref assignment.grading_standard_identifier_ref if assignment.grading_standard_identifier_ref
|
|
10
11
|
xml.workflow_state assignment.workflow_state if assignment.workflow_state
|
|
11
12
|
xml.points_possible assignment.points_possible if assignment.points_possible
|
|
12
13
|
xml.grading_type assignment.grading_type if assignment.grading_type
|
|
@@ -4,7 +4,8 @@ module CanvasCc::CanvasCC::Models
|
|
|
4
4
|
:assignment_group_identifier_ref, :workflow_state, :points_possible, :grading_type, :all_day,
|
|
5
5
|
:submission_types, :position, :peer_review_count, :peer_reviews_assigned, :peer_reviews,
|
|
6
6
|
:automatic_peer_reviews, :grade_group_students_individually, :muted, :turnitin_enabled,
|
|
7
|
-
:anonymous_peer_reviews, :quiz_identifierref, :rubric, :rubric_use_for_grading, :rubric_hide_score_total
|
|
7
|
+
:anonymous_peer_reviews, :quiz_identifierref, :rubric, :rubric_use_for_grading, :rubric_hide_score_total,
|
|
8
|
+
:grading_standard_identifier_ref
|
|
8
9
|
|
|
9
10
|
LAR_TYPE = 'associatedcontent/imscc_xmlv1p1/learning-application-resource'
|
|
10
11
|
ASSIGNMENT_SETTINGS_FILE = 'assignment_settings.xml'
|
data/lib/canvas_cc/version.rb
CHANGED
|
@@ -12,6 +12,7 @@ describe CanvasCc::CanvasCC::Models::Assignment do
|
|
|
12
12
|
it_behaves_like 'it has an attribute for', :all_day_date
|
|
13
13
|
it_behaves_like 'it has an attribute for', :peer_reviews_due_at
|
|
14
14
|
it_behaves_like 'it has an attribute for', :assignment_group_identifier_ref
|
|
15
|
+
it_behaves_like 'it has an attribute for', :grading_standard_identifier_ref
|
|
15
16
|
it_behaves_like 'it has an attribute for', :workflow_state
|
|
16
17
|
it_behaves_like 'it has an attribute for', :points_possible
|
|
17
18
|
it_behaves_like 'it has an attribute for', :grading_type
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: canvas_cc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.38
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Instructure
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-09-
|
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|