kosapi_client 0.14.1 → 0.15.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f194adf9313dba655ae7b4f1df804af846478e0409ca119251e2085eb9ce45c
|
4
|
+
data.tar.gz: 84411d4e1bcd9c0cb0a98b98a185c2478bb3a076308e65321d8ef36198b98c3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e4ec324c5efdf50066c6a62a331dccf388d267e05938974abf5511d5aae038ccbc5e6a10194cb2e2670bd88123bac98e38b57fe03143fbd7b9e2e6781f0c937
|
7
|
+
data.tar.gz: e185c427a236c862936b48cba50c928fcdf4ccfbc821ba4047e507ede3be469298028d871e6b5fcb5487a0ed5e48c67bbea92c4132676143cd732db5163ddaf2
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module KOSapiClient
|
2
|
+
module Entity
|
3
|
+
class ScheduleSlot < BaseEntity
|
4
|
+
|
5
|
+
map_data :department, Link
|
6
|
+
map_data :end_date, Time
|
7
|
+
map_data :faculty, Link
|
8
|
+
map_data :note, String
|
9
|
+
map_data :occupied, Boolean
|
10
|
+
map_data :room, Link
|
11
|
+
map_data :start_date, Time
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
data/lib/kosapi_client/entity.rb
CHANGED
@@ -13,6 +13,7 @@ require 'kosapi_client/entity/coursin'
|
|
13
13
|
require 'kosapi_client/entity/division'
|
14
14
|
require 'kosapi_client/entity/teacher_timetable_slot'
|
15
15
|
require 'kosapi_client/entity/timetable_slot'
|
16
|
+
require 'kosapi_client/entity/schedule_slot'
|
16
17
|
require 'kosapi_client/entity/parallel'
|
17
18
|
require 'kosapi_client/entity/parameter'
|
18
19
|
require 'kosapi_client/entity/base_person'
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kosapi_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tibor Szolár
|
8
8
|
- Jakub Jirutka
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-09-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -245,6 +245,7 @@ files:
|
|
245
245
|
- lib/kosapi_client/entity/parameter.rb
|
246
246
|
- lib/kosapi_client/entity/person.rb
|
247
247
|
- lib/kosapi_client/entity/result_page.rb
|
248
|
+
- lib/kosapi_client/entity/schedule_slot.rb
|
248
249
|
- lib/kosapi_client/entity/semester.rb
|
249
250
|
- lib/kosapi_client/entity/student.rb
|
250
251
|
- lib/kosapi_client/entity/teacher.rb
|
@@ -274,7 +275,7 @@ homepage: https://github.com/cvut/kosapi_client.rb
|
|
274
275
|
licenses:
|
275
276
|
- MIT
|
276
277
|
metadata: {}
|
277
|
-
post_install_message:
|
278
|
+
post_install_message:
|
278
279
|
rdoc_options: []
|
279
280
|
require_paths:
|
280
281
|
- lib
|
@@ -290,7 +291,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
290
291
|
version: '0'
|
291
292
|
requirements: []
|
292
293
|
rubygems_version: 3.1.6
|
293
|
-
signing_key:
|
294
|
+
signing_key:
|
294
295
|
specification_version: 4
|
295
296
|
summary: Simple Ruby client library for accessing KOSapi service resources
|
296
297
|
test_files: []
|