ims_caliper 0.9.3.9 → 0.9.3.10
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 +8 -8
- data/lib/caliper/entities/outcome/predicted_grade.rb +45 -0
- data/lib/caliper/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MGNlNmM1NzdkNTJkOWYxZGVjYmE1NGI4NzZlNjY2YTI4MmU4Yzc3MQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzU0YjZmODU2MjBjNTk4OTNhNmQ5NTI1YTJhNzY4OGQzOWI5MDhiZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OWE3NGE2ZjBmMzAzNGZmMGNiMjE5NDU0YWFhYTdiM2E3ZjcwY2M5MGNkMDJk
|
10
|
+
YjFkMmM4ZWQ0ZmM2M2M1NGY1MTUzMDBmY2ZmMTk0YmJhYWE1NTVlYmJmYWRm
|
11
|
+
NGMxNTU2MWEzZjZlOWI5MmJhNDdjOTdkNTAxMjRiNDgyNmFiOWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDA1OGVmMjY2MjA2ZWZmOTc2YTUwODFhYWU3Yjc4ZGIwZmFhNWQ0ODE2MWU5
|
14
|
+
YmM5ZjRiMDIwMjg5MGVhZjdmNmI3ZTViNjRkNGJiZTc3OGYxZmI0YjU1NmM2
|
15
|
+
OThiZTA3YjlkOTZlZDAzNGQ1MzU3ZGUyMDZjYjQ4ZDhmMmU3ZDQ=
|
@@ -0,0 +1,45 @@
|
|
1
|
+
##
|
2
|
+
# This file is part of IMS Caliper Analytics™ and is licensed to
|
3
|
+
# IMS Global Learning Consortium, Inc. (http://www.imsglobal.org)
|
4
|
+
# under one or more contributor license agreements. See the NOTICE
|
5
|
+
# file distributed with this work for additional information.
|
6
|
+
#
|
7
|
+
# IMS Caliper is free software: you can redistribute it and/or modify it under
|
8
|
+
# the terms of the GNU Lesser General Public License as published by the Free
|
9
|
+
# Software Foundation, version 3 of the License.
|
10
|
+
#
|
11
|
+
# IMS Caliper is distributed in the hope that it will be useful, but WITHOUT
|
12
|
+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
13
|
+
# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public License along
|
16
|
+
# with this program. If not, see http://www.gnu.org/licenses/.
|
17
|
+
|
18
|
+
require_relative '../entity'
|
19
|
+
require_relative '../generatable'
|
20
|
+
|
21
|
+
#
|
22
|
+
# Predicted grade
|
23
|
+
#
|
24
|
+
module Caliper
|
25
|
+
module Entities
|
26
|
+
module Outcome
|
27
|
+
class PredictedGrade < Entity
|
28
|
+
include Caliper::Entities::Generatable
|
29
|
+
|
30
|
+
attr_accessor :type, # String
|
31
|
+
:course_id,
|
32
|
+
:scored_by,
|
33
|
+
:student_id,
|
34
|
+
:user_role,
|
35
|
+
:assignment_id,
|
36
|
+
:predicted_score,
|
37
|
+
:possible_score,
|
38
|
+
end
|
39
|
+
|
40
|
+
def initialize
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
data/lib/caliper/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ims_caliper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.3.
|
4
|
+
version: 0.9.3.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Caliper Dev Group
|
@@ -57,6 +57,7 @@ files:
|
|
57
57
|
- lib/caliper/entities/media/media_location.rb
|
58
58
|
- lib/caliper/entities/media/media_object.rb
|
59
59
|
- lib/caliper/entities/media/video_object.rb
|
60
|
+
- lib/caliper/entities/outcome/predicted_grade.rb
|
60
61
|
- lib/caliper/entities/outcome/result.rb
|
61
62
|
- lib/caliper/entities/reading/epub_chapter.rb
|
62
63
|
- lib/caliper/entities/reading/epub_part.rb
|