y-rb_actioncable 0.1.5 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0099b27198574f6d4fcf86c095e6b15f54ba4797564489d28434c76ea6a72e48'
4
- data.tar.gz: 8ced47d6b84f7afd274747af02dfd5bff11e06eb4824bb3b57930c6baa93f2a2
3
+ metadata.gz: 3040c255efddb8d79280e7c8535006483af771473cfcd9aee2d8e66664aee06c
4
+ data.tar.gz: b6a3f98e5a410ef0c4a8fbc69aef19686674ba968f7eb48623e066fcfdb07f9d
5
5
  SHA512:
6
- metadata.gz: e7785f953ac3b6b5bb4fe771c7c3e96ecee177380c0c5262a5a26e1169bc6a734b1a94f05d4d3faf8cdcf274c20a5ec3bcd0b7180605a8c1c0f68bbce9a41292
7
- data.tar.gz: 5ae0222f9ecbc1cce1ffcc916b39027a7ceb2c6c158219c4cf4c6b48752df4a0ba7834f669cb800dbd810b1f938d1c695fe147956a171198a05fdb3c2c5e6741
6
+ metadata.gz: 0320125d679043c507f8f91df61a59c515bafe5dce6db241c9f5abdf6a5afeb374cc61772f11bfe3ccc77e3e816cf5495e33ce1f7e5a798ac8cbb4e2693b781c
7
+ data.tar.gz: d1a496b709c4a59fc5f360cebe1ae557b1470c0cdc9fb08a68a2b8050176132bce50f873f85b5ec1b36ba36aeb1e4e3ed3b3be4af8dee16577dc8365bf540add
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Y
4
4
  module Actioncable
5
- VERSION = "0.1.5"
5
+ VERSION = "0.1.7"
6
6
  end
7
7
  end
@@ -28,6 +28,8 @@ module Y
28
28
 
29
29
  def self.read_uint8_array(decoder, size)
30
30
  view = Buffer.create_uint8_array_view_from_buffer(decoder.arr, decoder.pos + 0, size)
31
+ decoder.pos += size
32
+ view
31
33
  end
32
34
 
33
35
  def self.read_var_uint8_array(decoder)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: y-rb_actioncable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hannes Moser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-06 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.4.3
33
+ version: 0.4.5
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 0.4.3
40
+ version: 0.4.5
41
41
  description: An ActionCable companion for Y.js clients.
42
42
  email:
43
43
  - box@hannesmoser.at
@@ -47,11 +47,6 @@ extra_rdoc_files: []
47
47
  files:
48
48
  - README.md
49
49
  - Rakefile
50
- - app/assets/config/yrb_actioncable_manifest.js
51
- - app/assets/stylesheets/yrb/actioncable/application.css
52
- - app/helpers/yrb/actioncable/application_helper.rb
53
- - app/jobs/yrb/actioncable/application_job.rb
54
- - app/models/yrb/actioncable/application_record.rb
55
50
  - lib/tasks/yrb/actioncable_tasks.rake
56
51
  - lib/y-rb_actioncable.rb
57
52
  - lib/y/actioncable.rb
@@ -96,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
91
  - !ruby/object:Gem::Version
97
92
  version: '0'
98
93
  requirements: []
99
- rubygems_version: 3.4.5
94
+ rubygems_version: 3.4.19
100
95
  signing_key:
101
96
  specification_version: 4
102
97
  summary: An ActionCable companion for Y.js clients.
@@ -1 +0,0 @@
1
- //= link_directory ../stylesheets/yrb/actioncable .css
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Y
4
- module Actioncable
5
- module ApplicationHelper
6
- end
7
- end
8
- end
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Y
4
- module Actioncable
5
- class ApplicationJob < ActiveJob::Base
6
- end
7
- end
8
- end
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Y
4
- module Actioncable
5
- class ApplicationRecord < ActiveRecord::Base
6
- self.abstract_class = true
7
- end
8
- end
9
- end