seatsio 44.0.0 → 44.1.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 +4 -4
- data/Gemfile.lock +1 -1
- data/LICENSE +21 -0
- data/lib/seatsio/domain.rb +5 -1
- data/lib/seatsio/version.rb +1 -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: fe189e46912b8485396ed4b32277e1a8ea6453142f3eb2e3777698f8cb2c02f9
|
4
|
+
data.tar.gz: f0c9d956828d89578256b032d7e40e715b6c3b0e86b9b512fab96c663d19a9e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b60686ec86fd71de14eaeeb22b2986c6ac8ace2e8b02a8d31746bceb5eb79355c1fdf8e0a8ccfd67f2c53953d37502b7afee56fb499061d48e632e53f12d7bf
|
7
|
+
data.tar.gz: 75bf17a7efe3a583dc9ba9934d8437972391b200f52e4815f3eb5121ab4ce0e159feedfd6aa2fba4e1a5f59cec414bfa22210c1315aa9601f613b0f68a93535c
|
data/Gemfile.lock
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2017 seats.io
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/lib/seatsio/domain.rb
CHANGED
@@ -316,7 +316,8 @@ module Seatsio
|
|
316
316
|
class ChartObjectInfo
|
317
317
|
|
318
318
|
attr_reader :label, :labels, :ids, :category_key, :category_label, :section, :entrance, :capacity, :object_type,
|
319
|
-
:left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point, :num_seats
|
319
|
+
:left_neighbour, :right_neighbour, :book_as_a_whole, :distance_to_focal_point, :num_seats, :is_accessible,
|
320
|
+
:is_companion_seat, :has_restricted_view
|
320
321
|
|
321
322
|
def initialize(data)
|
322
323
|
@label = data['label']
|
@@ -333,6 +334,9 @@ module Seatsio
|
|
333
334
|
@book_as_a_whole = data['bookAsAWhole']
|
334
335
|
@distance_to_focal_point = data['distanceToFocalPoint']
|
335
336
|
@num_seats = data['numSeats']
|
337
|
+
@is_accessible = data['isAccessible']
|
338
|
+
@is_companion_seat = data['isCompanionSeat']
|
339
|
+
@has_restricted_view = data['hasRestrictedView']
|
336
340
|
end
|
337
341
|
end
|
338
342
|
|
data/lib/seatsio/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seatsio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 44.
|
4
|
+
version: 44.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seats.io
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -121,6 +121,7 @@ files:
|
|
121
121
|
- ".ruby-version"
|
122
122
|
- Gemfile
|
123
123
|
- Gemfile.lock
|
124
|
+
- LICENSE
|
124
125
|
- README.md
|
125
126
|
- Rakefile
|
126
127
|
- bin/console
|