domoscio_rails 0.4.0 → 0.4.4

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
  SHA256:
3
- metadata.gz: 3018e6b4f3733f3b33ebb28fab7eccc020ea4909ff08c167fde24eb757890c14
4
- data.tar.gz: 9216994f5101318046ca16eb8aa2dbaf6a3b1c6d9de533748bf18a61e6001c3d
3
+ metadata.gz: '0081b12374fec380802cdc569ddf193600cb69ffdb8f30b131c60de9a6d62e31'
4
+ data.tar.gz: 5e6cf77d9d451dbf4e7bc3f482a1f1d0a4d169735487cc1c9c02fe0a2943d7ed
5
5
  SHA512:
6
- metadata.gz: '08018205d6a5123cb4b1e768c2960f3fc58c8679d657c114b2ef15af06386cbf2a46c21e32c110c0680042eba72c4a49aa9b32c12555093d44d29a33e5f81848'
7
- data.tar.gz: fff59acde37fe7c518cfb0da170b902c7878c52a2ac07a4f6f9c2f8e5c82611c51738490b9a4a5c0a1f85b277b6755effe6e8e7f11573322e3526baad6f0c857
6
+ metadata.gz: ae1e92b8fd9d428b3ba6115a7c2d2e04c2f6cb457fdc8e1ab0ac83c1aa06dd975752682a806470615a7ee513569885a2fc126076c7467fa54c93fa9f72f8a4fe
7
+ data.tar.gz: 9936df32392eaa36359f82bbeebf506e77d7e6d98d4cdf5f66237b0b22eecbf81b52e1ed663cd0256d08dbc2b6ad1e0d2c73a88dbc76367870cd21fad3dc3b99
@@ -0,0 +1,8 @@
1
+ module DomoscioRails
2
+ class StudentGroup < Resource
3
+ include DomoscioRails::HTTPCalls::Create
4
+ include DomoscioRails::HTTPCalls::Fetch
5
+ include DomoscioRails::HTTPCalls::Destroy
6
+ include DomoscioRails::HTTPCalls::Update
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module DomoscioRails
2
+ class LearningProgram < Resource
3
+ include DomoscioRails::HTTPCalls::Create
4
+ include DomoscioRails::HTTPCalls::Fetch
5
+ include DomoscioRails::HTTPCalls::Destroy
6
+ include DomoscioRails::HTTPCalls::Update
7
+ end
8
+ end
@@ -4,5 +4,6 @@ module DomoscioRails
4
4
  include DomoscioRails::HTTPCalls::Fetch
5
5
  include DomoscioRails::HTTPCalls::Destroy
6
6
  include DomoscioRails::HTTPCalls::Update
7
+ include DomoscioRails::HTTPCalls::Util
7
8
  end
8
9
  end
@@ -0,0 +1,8 @@
1
+ module DomoscioRails
2
+ class Subscription < Resource
3
+ include DomoscioRails::HTTPCalls::Create
4
+ include DomoscioRails::HTTPCalls::Fetch
5
+ include DomoscioRails::HTTPCalls::Destroy
6
+ include DomoscioRails::HTTPCalls::Util
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module DomoscioRails
2
+ class StatsUtil < Resource
3
+ include DomoscioRails::HTTPCalls::Util
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module DomoscioRails
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.4'.freeze
3
3
  end
@@ -15,15 +15,18 @@ require 'domoscio_rails/data/instance'
15
15
  require 'domoscio_rails/data/recommendation'
16
16
  require 'domoscio_rails/data/learning_session'
17
17
  require 'domoscio_rails/data/student'
18
+ require 'domoscio_rails/data/student_group'
18
19
  require 'domoscio_rails/knowledge/knowledge_edge'
19
20
  require 'domoscio_rails/knowledge/knowledge_graph'
20
21
  require 'domoscio_rails/knowledge/knowledge_node_content'
21
22
  require 'domoscio_rails/knowledge/knowledge_node_student'
22
23
  require 'domoscio_rails/knowledge/knowledge_node'
24
+ require 'domoscio_rails/objective/learning_program'
23
25
  require 'domoscio_rails/objective/objective_knowledge_node_student'
24
26
  require 'domoscio_rails/objective/objective_knowledge_node'
25
27
  require 'domoscio_rails/objective/objective_student'
26
28
  require 'domoscio_rails/objective/objective'
29
+ require 'domoscio_rails/objective/subscription'
27
30
  require 'domoscio_rails/tag/tag_edge'
28
31
  require 'domoscio_rails/tag/tag_set'
29
32
  require 'domoscio_rails/tag/tag'
@@ -31,6 +34,7 @@ require 'domoscio_rails/tag/tagging'
31
34
  require 'domoscio_rails/utils/gameplay_util'
32
35
  require 'domoscio_rails/utils/recommendation_util'
33
36
  require 'domoscio_rails/utils/review_util'
37
+ require 'domoscio_rails/utils/stats_util'
34
38
 
35
39
  module DomoscioRails
36
40
  # Configurable attributes and default values
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.0
4
+ version: 0.4.4
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-01-25 00:00:00.000000000 Z
11
+ date: 2022-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -57,6 +57,7 @@ files:
57
57
  - lib/domoscio_rails/data/learning_session.rb
58
58
  - lib/domoscio_rails/data/recommendation.rb
59
59
  - lib/domoscio_rails/data/student.rb
60
+ - lib/domoscio_rails/data/student_group.rb
60
61
  - lib/domoscio_rails/errors.rb
61
62
  - lib/domoscio_rails/http_calls.rb
62
63
  - lib/domoscio_rails/json.rb
@@ -65,10 +66,12 @@ files:
65
66
  - lib/domoscio_rails/knowledge/knowledge_node.rb
66
67
  - lib/domoscio_rails/knowledge/knowledge_node_content.rb
67
68
  - lib/domoscio_rails/knowledge/knowledge_node_student.rb
69
+ - lib/domoscio_rails/objective/learning_program.rb
68
70
  - lib/domoscio_rails/objective/objective.rb
69
71
  - lib/domoscio_rails/objective/objective_knowledge_node.rb
70
72
  - lib/domoscio_rails/objective/objective_knowledge_node_student.rb
71
73
  - lib/domoscio_rails/objective/objective_student.rb
74
+ - lib/domoscio_rails/objective/subscription.rb
72
75
  - lib/domoscio_rails/resource.rb
73
76
  - lib/domoscio_rails/tag/tag.rb
74
77
  - lib/domoscio_rails/tag/tag_edge.rb
@@ -77,6 +80,7 @@ files:
77
80
  - lib/domoscio_rails/utils/gameplay_util.rb
78
81
  - lib/domoscio_rails/utils/recommendation_util.rb
79
82
  - lib/domoscio_rails/utils/review_util.rb
83
+ - lib/domoscio_rails/utils/stats_util.rb
80
84
  - lib/domoscio_rails/version.rb
81
85
  homepage: http://www.domoscio.com
82
86
  licenses:
@@ -97,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
101
  - !ruby/object:Gem::Version
98
102
  version: '0'
99
103
  requirements: []
100
- rubygems_version: 3.1.2
104
+ rubygems_version: 3.2.22
101
105
  signing_key:
102
106
  specification_version: 4
103
107
  summary: Summary of DomoscioRailspec.