yrby 0.2.1

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.
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yrby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - JP Camara
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rb_sys
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '0.9'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '0.9'
26
+ - !ruby/object:Gem::Dependency
27
+ name: minitest
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '5.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rake
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '13.0'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '13.0'
54
+ - !ruby/object:Gem::Dependency
55
+ name: rake-compiler
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.2'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.2'
68
+ description: 'yrby is a thread-safe Ruby binding over the Rust y-crdt (yrs) library:
69
+ CRDT documents, awareness/presence, and the y-websocket sync protocol primitives,
70
+ with the GVL released during native work so documents sync in parallel. The ActionCable/Rails
71
+ integration lives in the companion yrby-actioncable gem.'
72
+ email:
73
+ - johnpcamara@gmail.com
74
+ executables: []
75
+ extensions:
76
+ - ext/yrby/extconf.rb
77
+ extra_rdoc_files: []
78
+ files:
79
+ - CHANGELOG.md
80
+ - Cargo.toml
81
+ - LICENSE
82
+ - README.md
83
+ - ext/yrby/Cargo.toml
84
+ - ext/yrby/extconf.rb
85
+ - ext/yrby/src/lib.rs
86
+ - ext/yrby/src/protocol.rs
87
+ - ext/yrby/src/read.rs
88
+ - lib/y.rb
89
+ - lib/y/decoder.rb
90
+ - lib/y/decoder/version.rb
91
+ - lib/y/version.rb
92
+ - lib/yrby-decoder.rb
93
+ - lib/yrby.rb
94
+ homepage: https://github.com/jpcamara/yrby
95
+ licenses:
96
+ - MIT
97
+ metadata:
98
+ source_code_uri: https://github.com/jpcamara/yrby
99
+ changelog_uri: https://github.com/jpcamara/yrby/blob/main/CHANGELOG.md
100
+ bug_tracker_uri: https://github.com/jpcamara/yrby/issues
101
+ rubygems_mfa_required: 'true'
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: 3.4.0
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubygems_version: 3.6.9
117
+ specification_version: 4
118
+ summary: 'Thread-safe Ruby bindings for y-crdt (Y.js): documents, awareness, and the
119
+ y-websocket sync protocol'
120
+ test_files: []