domoscio_rails 0.4.26 → 0.4.28
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 +4 -4
- data/lib/domoscio_rails/data/student_group_user.rb +6 -0
- data/lib/domoscio_rails/version.rb +1 -1
- data/lib/domoscio_rails.rb +2 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a46f750a1045192193b8fbe7aed58125255031b3a43b1098fdb0b4eb2172a015
|
4
|
+
data.tar.gz: 0115a644b0d3eda31dad83c393a25bb4b2678bb37cfd1e935e96bb6ef8998b0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ece75e6ed8b2905f4a1e13c84efa708d1c9a6f63b5d131b88aa6a0aa312618b628f49343b4a6a4e247c83e23bb95d40904279094318bf388fc864b613ea9dbaa
|
7
|
+
data.tar.gz: 7d809c5e588c2d08a9bc8b7f5a2f408b7fb624d676f1676a5edfa01b6fc402c923930368348218b392d2168e7af46f5d942fbdf3836da39d0789a0e1b9d43afb
|
data/lib/domoscio_rails.rb
CHANGED
@@ -20,6 +20,7 @@ require 'domoscio_rails/data/learning_session'
|
|
20
20
|
require 'domoscio_rails/data/scorm'
|
21
21
|
require 'domoscio_rails/data/student'
|
22
22
|
require 'domoscio_rails/data/student_group'
|
23
|
+
require 'domoscio_rails/data/student_group_user'
|
23
24
|
require 'domoscio_rails/data/question'
|
24
25
|
require 'domoscio_rails/data/user'
|
25
26
|
require 'domoscio_rails/data/account'
|
@@ -155,7 +156,7 @@ module DomoscioRails
|
|
155
156
|
# This helper will check the response status and build the correcponding DomoscioRails::ResponseError
|
156
157
|
#
|
157
158
|
def self.raise_http_failure(uri, response, params)
|
158
|
-
return if response.is_a? Net::
|
159
|
+
return if response.is_a?(Net::HTTPSuccess) || response.is_a?(Net::HTTPNoContent)
|
159
160
|
|
160
161
|
raise ResponseError.new(
|
161
162
|
uri,
|
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.
|
4
|
+
version: 0.4.28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benoit Praly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- lib/domoscio_rails/data/scorm.rb
|
66
66
|
- lib/domoscio_rails/data/student.rb
|
67
67
|
- lib/domoscio_rails/data/student_group.rb
|
68
|
+
- lib/domoscio_rails/data/student_group_user.rb
|
68
69
|
- lib/domoscio_rails/data/supervisor.rb
|
69
70
|
- lib/domoscio_rails/data/user.rb
|
70
71
|
- lib/domoscio_rails/errors.rb
|