lws 7.1.3 → 7.1.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 +4 -4
- data/lib/lws.rb +5 -5
- data/lib/lws/apps/auth.rb +3 -3
- data/lib/lws/apps/corporate_website.rb +3 -3
- data/lib/lws/apps/digital_signage.rb +16 -3
- data/lib/lws/apps/generic.rb +4 -4
- data/lib/lws/apps/maps.rb +3 -3
- data/lib/lws/apps/presence.rb +25 -9
- data/lib/lws/apps/resource.rb +3 -3
- data/lib/lws/apps/ticket.rb +3 -3
- data/lib/lws/config.rb +3 -3
- data/lib/lws/errors.rb +3 -3
- data/lib/lws/middleware.rb +3 -3
- data/lib/lws/middleware/http_logger.rb +3 -3
- data/lib/lws/middleware/json_logger.rb +3 -3
- data/lib/lws/middleware/json_parser.rb +3 -3
- data/lib/lws/middleware/request_headers.rb +3 -3
- data/lib/lws/stubbing.rb +3 -3
- data/lib/lws/version.rb +4 -4
- data/test/api_token_middleware_test.rb +3 -3
- data/test/auth_test.rb +3 -3
- data/test/caching_test.rb +3 -3
- data/test/corporate_website_test.rb +3 -3
- data/test/digital_signage_test.rb +3 -3
- data/test/generic_test.rb +3 -3
- data/test/json_parser_test.rb +3 -3
- data/test/logger_test.rb +3 -3
- data/test/maps_test.rb +3 -3
- data/test/presence_test.rb +3 -3
- data/test/resource_test.rb +3 -3
- data/test/setup_test.rb +3 -3
- data/test/stubbing_test.rb +3 -3
- data/test/support/with_env.rb +3 -3
- data/test/test_helper.rb +3 -3
- data/test/ticket_test.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b44901e4298716f6413349f0eb29503bcf2f72b6b0c0b6d70db6a2c0506c6c2c
|
4
|
+
data.tar.gz: be1e99fbed52e55c4ac226380a007cce97722335347b14b715bc76ea859f8028
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d5dc2781bcf973bf2445d818fcef0e008e97185c26932b3f529f22aff7b2dac9ab19b70341b859b8bab7bda61ad830ccd0024aca3371bca8fb9fcacc9fedf97
|
7
|
+
data.tar.gz: b1c2394fba5debfdbfe2a7c692cd5c065257f372897ac20977a70d41e6ec5899d03c10dc2bb44ff763fdfb86bd948788b3345ba76120e3631ca3e36bff15c88c
|
data/lib/lws.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "faraday_middleware"
|
@@ -43,7 +43,7 @@ module LWS
|
|
43
43
|
# @return [Config] the API configuration for the web services
|
44
44
|
mattr_reader :config
|
45
45
|
|
46
|
-
# @return [Stubbing] the stubbing setup for the web
|
46
|
+
# @return [Stubbing] the stubbing setup for the web services
|
47
47
|
mattr_reader :stubbing
|
48
48
|
|
49
49
|
# Sets up the application API libraries using the provided
|
@@ -73,7 +73,7 @@ module LWS
|
|
73
73
|
#
|
74
74
|
# @yieldparam [Config] config an API configuration object that can be
|
75
75
|
# configured
|
76
|
-
# @raise [LWS::Errors::ConfigError] if the API token is not configured/found
|
76
|
+
# @raise [LWS::Errors::ConfigError] if the API token is not configured/found afterwards
|
77
77
|
# @return [LWS] the module itself
|
78
78
|
def self.setup(&block)
|
79
79
|
@@config = Config.new
|
data/lib/lws/apps/auth.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The auth app module
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The corporate website app module
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright ©
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The digital_signage app module
|
@@ -761,6 +761,19 @@ module LWS::DigitalSignage
|
|
761
761
|
use_api LWS::DigitalSignage.api
|
762
762
|
uri "layout/:layout_id/versions(/:id)"
|
763
763
|
|
764
|
+
# @!attribute archive_storage_id
|
765
|
+
# @return [String, nil] sthe storage ID of the archive/layout pack of the
|
766
|
+
# layout version
|
767
|
+
attribute :archive_storage_id
|
768
|
+
|
769
|
+
# @!attribute archive_url
|
770
|
+
# @note
|
771
|
+
# To be able retrieve this, the token needs to be passed via +X-Token+
|
772
|
+
# in the HTTP request headers!
|
773
|
+
# @return [String, nil] the URL of the archive/layout pack of the layout
|
774
|
+
# version (if accessible)
|
775
|
+
attribute :archive_url
|
776
|
+
|
764
777
|
# @!attribute elements
|
765
778
|
# @return [Array<Layout::Element>] the elements contained in the layout
|
766
779
|
# version
|
data/lib/lws/apps/generic.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The generic app module
|
@@ -193,7 +193,7 @@ module LWS::Generic
|
|
193
193
|
|
194
194
|
# = The storage class
|
195
195
|
#
|
196
|
-
# This class can be used to upload files for this app module.
|
196
|
+
# This class can be used to download and upload files for this app module.
|
197
197
|
class Storage
|
198
198
|
# @!visibility private
|
199
199
|
def self.use_api(api)
|
data/lib/lws/apps/maps.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The maps app module
|
data/lib/lws/apps/presence.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The presence app module
|
@@ -43,10 +43,6 @@ module LWS::Presence
|
|
43
43
|
class Appointment < LWS::Generic::Model
|
44
44
|
use_api LWS::Presence.api
|
45
45
|
|
46
|
-
# @!attribute title
|
47
|
-
# @return [String] the title of the appointment
|
48
|
-
attribute :title
|
49
|
-
|
50
46
|
# @!attribute datetime_end
|
51
47
|
# @return [String] the timestamp of the end of the appointment
|
52
48
|
attribute :datetime_end
|
@@ -72,17 +68,21 @@ module LWS::Presence
|
|
72
68
|
attribute :location_id
|
73
69
|
|
74
70
|
# @!attribute organiser
|
75
|
-
# @return [Person] the
|
71
|
+
# @return [Person] the organiser of the appointment
|
76
72
|
belongs_to :organiser, class_name: "LWS::Presence::Person"
|
77
73
|
|
78
74
|
# @!attribute organiser_id
|
79
|
-
# @return [Fixnum] the ID of the
|
75
|
+
# @return [Fixnum] the ID of the organiser of the appointment
|
80
76
|
attribute :organiser_id
|
81
77
|
|
82
78
|
# @!attribute people
|
83
79
|
# @return [Array<Person>] the people associated with the appointment
|
84
80
|
has_many :people
|
85
81
|
|
82
|
+
# @!attribute title
|
83
|
+
# @return [String] the title of the appointment
|
84
|
+
attribute :title
|
85
|
+
|
86
86
|
# @!attribute uuid
|
87
87
|
# @return [String] the UUID of the location
|
88
88
|
attribute :uuid
|
@@ -601,6 +601,14 @@ module LWS::Presence
|
|
601
601
|
class Reader < LWS::Generic::Model
|
602
602
|
use_api LWS::Presence.api
|
603
603
|
|
604
|
+
# @!attribute company
|
605
|
+
# @return [LWS::Auth::Company] the company the reader belongs to
|
606
|
+
belongs_to :company, class_name: "LWS::Auth::Company"
|
607
|
+
|
608
|
+
# @!attribute company_id
|
609
|
+
# @return [Integer] the ID of the company the reader belongs to
|
610
|
+
attribute :company_id
|
611
|
+
|
604
612
|
# @!attribute gateway
|
605
613
|
# @return [Integer] the (32-bit) LCIO gateway ID of the reader
|
606
614
|
attribute :gateway
|
@@ -613,9 +621,17 @@ module LWS::Presence
|
|
613
621
|
# @return [Integer] the ID of the location of the reader
|
614
622
|
attribute :location_id
|
615
623
|
|
624
|
+
# @!attribute name
|
625
|
+
# @return [String] the name of the reader
|
626
|
+
attribute :name
|
627
|
+
|
616
628
|
# @!attribute node
|
617
629
|
# @return [Integer] the (8-bit) LCIO gateway node number of the reader
|
618
630
|
attribute :node
|
631
|
+
|
632
|
+
# @!attribute serial_number
|
633
|
+
# @return [String] the serial number of the reader
|
634
|
+
attribute :serial_number
|
619
635
|
end
|
620
636
|
|
621
637
|
# (see Generic::Storage)
|
data/lib/lws/apps/resource.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The resource app module
|
data/lib/lws/apps/ticket.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
# = The ticket app module
|
data/lib/lws/config.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
data/lib/lws/errors.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
data/lib/lws/middleware.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
data/lib/lws/stubbing.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
data/lib/lws/version.rb
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
module LWS
|
13
13
|
|
14
14
|
# The LWS library version.
|
15
15
|
# @note The major and minor version parts match the LWS API version!
|
16
|
-
VERSION = "7.1.
|
16
|
+
VERSION = "7.1.4".freeze
|
17
17
|
|
18
18
|
end
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/auth_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/caching_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/generic_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/json_parser_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/logger_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/maps_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/presence_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/resource_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/setup_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/stubbing_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
data/test/support/with_env.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
class Minitest::Test
|
data/test/test_helper.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require 'simplecov'
|
data/test/ticket_test.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#
|
2
|
-
# Copyright © 2016 LeftClick B.V.
|
2
|
+
# Copyright © 2016–2020 LeftClick B.V.
|
3
3
|
#
|
4
4
|
# This software is property of LeftClick B.V. and cannot be redistributed
|
5
5
|
# and/or modified without permission. The software or any of its parts
|
6
6
|
# cannot be used for any other purposes than the LeftClick services and
|
7
7
|
# only during a valid license subscription. For more information, please
|
8
|
-
# contact LeftClick B.V. at:
|
9
|
-
# Netherlands, info@leftclick.eu, +
|
8
|
+
# contact LeftClick B.V. at: Schootense Dreef 20A, 5708 HZ Helmond, The
|
9
|
+
# Netherlands, info@leftclick.eu, +3185-4444-004.
|
10
10
|
|
11
11
|
|
12
12
|
require "test_helper"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.1.
|
4
|
+
version: 7.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LeftClick B.V.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-09-
|
11
|
+
date: 2020-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday_middleware
|