webfleet_connect 0.2.0 → 0.2.3

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: 6049c656dbc1d04ff6f8cc2eb110019277d92b7194e0b6072fd18ba3427e4381
4
- data.tar.gz: fc56192fc6221325a1dbe0480450f1ed27c531af8949d64c60baab15b8ec8753
3
+ metadata.gz: eb5136009bd09620935a07d17798a135d6522cf98ed735a98d3c1c030e18c8ae
4
+ data.tar.gz: 4d1aa92a23c44e460b65b8fd1c86aa541fa1bab547d47fc72f75e0484f09d045
5
5
  SHA512:
6
- metadata.gz: 80732e10775099919be49aa2ca63ca3a7e160e49bd4596b04f2e6835932470f7394b43236f36f3a4677caf417a4d442baab4e4455c8399adb6935fa4cc2a3d55
7
- data.tar.gz: c2beb03982bff8ca98fc5e46456453836ccae3797fda83624390727d604b4c2460ab01c27258d9e2375bdbd12dab339ecb4c92a123a8c47aa45bde90101c8b92
6
+ metadata.gz: f508ef9d187d5662b632cd2d07fc4039e322bc921d3cc500071e7a350bd9edf7d0c169b84e7f86464055274485d10654ace0118708e2b94e608cd1f8d77f2c74
7
+ data.tar.gz: e645dce5dd611f60dbeb004536bffc7750444e51535bb62ee09403d35773ab30d4b28ce1746b98508b85fcc4b42a057b08886fc86df071c2da2ce03f07a42c14
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- webfleet_connect (0.1.3)
4
+ webfleet_connect (0.2.1)
5
5
  csv (~> 3.2, >= 3.2.7)
6
6
  httparty (~> 0.21.0)
7
7
  json (= 2.6.3)
@@ -9,7 +9,7 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- csv (3.2.7)
12
+ csv (3.2.8)
13
13
  diff-lcs (1.5.0)
14
14
  httparty (0.21.0)
15
15
  mini_mime (>= 1.0.0)
@@ -17,7 +17,7 @@ GEM
17
17
  json (2.6.3)
18
18
  mini_mime (1.1.5)
19
19
  multi_xml (0.6.0)
20
- rake (13.0.6)
20
+ rake (13.1.0)
21
21
  rspec (3.12.0)
22
22
  rspec-core (~> 3.12.0)
23
23
  rspec-expectations (~> 3.12.0)
data/README.md CHANGED
@@ -142,7 +142,7 @@ Mesage queues:
142
142
  - [create_queue_extern](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/createqueueextern.html)
143
143
  - [delete_queue_extern](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/deletequeueextern.html)
144
144
  - [pop_queue_messages_extern](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/popqueuemessagesextern.html)
145
- - [akc_queue_messages_extern](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/ackqueuemessagesextern.html)
145
+ - [ack_queue_messages_extern](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/ackqueuemessagesextern.html)
146
146
 
147
147
  Objects:
148
148
 
@@ -291,7 +291,7 @@ LINK.connect:
291
291
  - [send_aux_device_data](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/sendauxdevicedata.html)
292
292
  - [get_local_aux_device_config](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/getlocalauxdeviceconfig.html)
293
293
  - [configure_local_aux_device](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/configurelocalauxdevice.html)
294
- - [get_remote_aux_device_data](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/getremoteauxdevicedata.html)
294
+ - [get_remote_aux_device_config](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/getremoteauxdeviceconfig.html)
295
295
  - [configure_remote_aux_device](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/configureremoteauxdevice.html)
296
296
  - [remove_remote_aux_device_config](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/removeremoteauxdeviceconfig.html)
297
297
  - [clear_aux_device_data_queue](https://www.webfleet.com/static/help/webfleet-connect/en_gb/index.html#data/clearauxdevicedataqueue.html)
@@ -7,7 +7,7 @@ module WebfleetConnect::Actions::LINKConnect
7
7
  add_action :send_aux_device_data
8
8
  add_action :get_local_aux_device_config
9
9
  add_action :configure_loca_aux_device
10
- add_action :get_remote_aux_device_data
10
+ add_action :get_remote_aux_device_config
11
11
  add_action :configure_remote_aux_device
12
12
  add_action :remove_remote_aux_device_config
13
13
  add_action :clear_aux_device_data_queue
@@ -7,5 +7,5 @@ module WebfleetConnect::Actions::MessageQueues
7
7
  add_action :create_queue_extern
8
8
  add_action :delete_queue_extern
9
9
  add_action :pop_queue_messages_extern
10
- add_action :akc_queue_messages_extern
10
+ add_action :ack_queue_messages_extern
11
11
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WebfleetConnect
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.3"
5
5
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webfleet_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - alex
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-15 00:00:00.000000000 Z
11
+ date: 2023-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -135,6 +135,7 @@ files:
135
135
  - lib/webfleet_connect/version.rb
136
136
  - pkg/.gitkeep
137
137
  - sig/webfleet_connect.rbs
138
+ - webfleet_connect-0.2.0.gem
138
139
  - webfleet_connect.gemspec
139
140
  homepage: https://movomx.com
140
141
  licenses: []