ims_caliper 0.9.3.7 → 0.9.3.8

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Y2VjOGVjZDNmYzYwZTM4YTY3NjAzMDUwZWZjZmQyNzZlYjZmMzVmYg==
4
+ OGNkMmYyM2VhMDgwZjg2ZmQ3MWJhMTdmMWFiNjliNTUwYTY3YTFjNg==
5
5
  data.tar.gz: !binary |-
6
- NmFiMWYzN2M2OTFiODZhYjJkN2UxNGZjODZjN2ZiMTMxODM1Nzc0MQ==
6
+ Yzc5YzEyMWMyYjhiYWQ5ODA2M2M3ZDNiMWRjMmMzZDAwYWNmNGYxNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OTk3YTdmMWM5YTFkYmFhYzhlNTFjZWRkMGJmNjNjMzM2YmM3OWRhMmU1MjJk
10
- YjY5NjExOGJkNmJjNDQyZTcxODlmNTJkZGIyYjQ0NDJkOTUzNDkyMjg0MWE4
11
- ZGM1MjQ0MTkwMzNmYTE0ZGFmMTgxNGM3YjA1NTRkZTMwNjFmZGE=
9
+ OThhZGNjNzFlMjg4Y2JkYmY0ZTk1ZmQ4N2IwZDA2ZjZkYzM0YTZkYTBjMDNj
10
+ MzQ1ZmIzZjVmMWFhMDdhOWFiNDYyM2I4Njg1NmYyN2RhZmFhMDk4NmQ1NmZj
11
+ M2ZiMzA0MzU1NzI3MWE1OTdiODBmMDI3NDU0MzI2ZWY4ZTg4Yjg=
12
12
  data.tar.gz: !binary |-
13
- ZWIzY2E3NzAzNDAxMzYyMjRmMDZkYTlmNDEwZmUyZjI1NTg3OTJkMzMyNGIy
14
- MjkyYjY3MGNmMGExMTEzMWMwMTMxODM0ZTA3MDA1MzBhNmVjY2MwZTVlOGNm
15
- MzQyM2YxNjYwZWQxOGJhN2VlYzdhYzk5ZWI4NDhhMDM5YzYwODI=
13
+ Y2I5ODZjZjU5ZjRjY2EyNzhhY2JjNThjN2FhNGMwNTVhODFkYjlhNDMwZjYx
14
+ Y2U0NDJmZDQxNzk5MjBlNTk2OTgzNjI1ZDc0NDc0ZjE4NGYxNGI4NDgwNjQ2
15
+ OTI4MzE2NjlmMzgzNzczYmJmNWY3NDI2NGIyMmNiZDU3YTQ0MTU=
@@ -0,0 +1,39 @@
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 './event'
19
+
20
+ #
21
+ # GradePredictEvent Event.
22
+ #
23
+ module Caliper
24
+ module Event
25
+ class GradePredictEvent < Event
26
+ attr_accessor :context,
27
+ :type,
28
+ :action,
29
+ :object,
30
+ :generated
31
+
32
+ def initialize
33
+ super
34
+ @context = EventContext::GRADE_PREDICT
35
+ @type = EventType::GRADE_PREDICT
36
+ end
37
+ end
38
+ end
39
+ end
@@ -19,5 +19,5 @@
19
19
  # Version.
20
20
  #
21
21
  module Caliper
22
- VERSION = "0.9.3.7"
22
+ VERSION = "0.9.3.8"
23
23
  end
@@ -19,6 +19,7 @@ require 'require_all'
19
19
  require_all 'lib/caliper/sensor.rb'
20
20
  require_relative './event_helper'
21
21
  require_all 'lib/caliper/event/session_event.rb'
22
+ require_all 'lib/caliper/event/grade_predict_event.rb'
22
23
 
23
24
  module Caliper
24
25
 
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.7
4
+ version: 0.9.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caliper Dev Group
@@ -85,6 +85,7 @@ files:
85
85
  - lib/caliper/event/assessment_item_event.rb
86
86
  - lib/caliper/event/assignable_event.rb
87
87
  - lib/caliper/event/event.rb
88
+ - lib/caliper/event/grade_predict_event.rb
88
89
  - lib/caliper/event/jsonable.rb
89
90
  - lib/caliper/event/media_event.rb
90
91
  - lib/caliper/event/navigation_event.rb