domoscio_rails 0.4.10 → 0.4.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c035cfb9e1b30b3d58206a4d66d2fc3f052a5218cb33e0a82b6f25243a83d3bd
4
- data.tar.gz: 3bc1e77d4e9640396510fd0cefbc6f16be10adc3e88576900520adfcc4c6d0c6
3
+ metadata.gz: 3f6294360effa45aff47a60f9e5fb5c7419586476cf9bda522d0d20727ec9873
4
+ data.tar.gz: 8d703e3c1a8edd489604027851e9cd260cafdd63c92fd6381f24e15173c04274
5
5
  SHA512:
6
- metadata.gz: e03bea0927643526b4dfab42ff84ae51c5369eca1d77d6732e1dd6feab60c9be4caa78ad7aad83f479144460aa1c023726bbecf0ddbc3b9260a22283bb4a1991
7
- data.tar.gz: 5fde31b74aec88cc016b663724d2e3bfa3fe5feed0e2fbd2d151a1dc4ed77161e4072a15181c7822280d8ec7bd1f726e074921096d08f6fe2c9efed33705e904
6
+ metadata.gz: 97de3546148357a91e58b6d4917b6a290b7f453b417834972ec224e79b0b76f357a1b8854ec30b32e68121b11fd199608f36beac35693d27940a65341180b42d
7
+ data.tar.gz: 9db5c71ae026dab62dbd0980db48e2cd5f729b94c722cf351ba3b936017d4c633c385043ed63183374821e1da03b92b8a5454a85678e1de42e627c70fe64a287
@@ -0,0 +1,5 @@
1
+ module DomoscioRails
2
+ class LearningSessionRecommendation < Resource
3
+ include DomoscioRails::HTTPCalls::Fetch
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ module DomoscioRails
2
+ class Question < Resource
3
+ include DomoscioRails::HTTPCalls::Fetch
4
+ include DomoscioRails::HTTPCalls::Update
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module DomoscioRails
2
- VERSION = '0.4.10'.freeze
2
+ VERSION = '0.4.12'.freeze
3
3
  end
@@ -13,11 +13,13 @@ require 'domoscio_rails/data/content'
13
13
  require 'domoscio_rails/data/event'
14
14
  require 'domoscio_rails/data/instance'
15
15
  require 'domoscio_rails/data/recommendation'
16
+ require 'domoscio_rails/data/learning_session_recommendation'
16
17
  require 'domoscio_rails/data/learning_session_knowledge_node'
17
18
  require 'domoscio_rails/data/learning_session'
18
19
  require 'domoscio_rails/data/scorm'
19
20
  require 'domoscio_rails/data/student'
20
21
  require 'domoscio_rails/data/student_group'
22
+ require 'domoscio_rails/data/question'
21
23
  require 'domoscio_rails/knowledge/knowledge_edge'
22
24
  require 'domoscio_rails/knowledge/knowledge_graph'
23
25
  require 'domoscio_rails/knowledge/scale'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: domoscio_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.10
4
+ version: 0.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benoit Praly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-03 00:00:00.000000000 Z
11
+ date: 2022-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -56,6 +56,8 @@ files:
56
56
  - lib/domoscio_rails/data/instance.rb
57
57
  - lib/domoscio_rails/data/learning_session.rb
58
58
  - lib/domoscio_rails/data/learning_session_knowledge_node.rb
59
+ - lib/domoscio_rails/data/learning_session_recommendation.rb
60
+ - lib/domoscio_rails/data/question.rb
59
61
  - lib/domoscio_rails/data/recommendation.rb
60
62
  - lib/domoscio_rails/data/scorm.rb
61
63
  - lib/domoscio_rails/data/student.rb