gesttalt 0.7.4-x86_64-linux

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 306e0ec8418a70810a7d0e3e3b223ce9de03f3d8aaa250a796a6ff8c9e574512
4
+ data.tar.gz: '00528a0c76a9ce1ca10ee90edc5a406105faae311955ab97876dfe5f0278597e'
5
+ SHA512:
6
+ metadata.gz: 8841809bda3eb39081608ae8d048f9cfab8b8c62c0cf54db49968b54815d753d2bcb7d9fc643bbdd3887abf5cfa7bb8a226f6ac1e4edb615bb93dadb9092d48d
7
+ data.tar.gz: 6e53ae23a7c041e201931acedb457a27f621ed2a8de6eaa0912b8589140d04433092733298a148ee9dcad5e485482e01f14a61dfd28c81fb43be12473c276c57
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Pedro Piñera Buendía
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/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # Gesttalt Ruby Bindings
2
+
3
+ A universal OAuth2.0 client written in Zig concurrency-ready.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ gem install gesttalt
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ruby
14
+ require "gesttalt"
15
+
16
+ project_dir = "."
17
+ timestamp = 1735148400
18
+
19
+ path = Gesttalt::Snippets.create(project_dir, timestamp, "Example snippet", "const x = 1;", "example.zig")
20
+ puts path
21
+
22
+ snippet = Gesttalt::Snippets.read(project_dir, timestamp)
23
+ puts snippet["description"]
24
+
25
+ Gesttalt::Snippets.update(project_dir, timestamp, "Updated", nil, nil)
26
+
27
+ Gesttalt::Snippets.delete(project_dir, timestamp)
28
+ ```
29
+
30
+ ## Development
31
+
32
+ ```bash
33
+ # From project root
34
+ zig build -Doptimize=ReleaseFast
35
+
36
+ cd bindings/ruby
37
+ bundle install
38
+ bundle exec rake compile
39
+ bundle exec ruby -I lib -e 'require "gesttalt"; puts Gesttalt::Snippets.create(".", 1735148400, "Example", "const x = 1;", "example.zig")'
40
+ ```
41
+
42
+ ## License
43
+
44
+ MIT
data/lib/gesttalt.rb ADDED
@@ -0,0 +1,7 @@
1
+ # Gesttalt - Snippets CRUD bindings powered by Zig
2
+ #
3
+ # @example Basic usage
4
+ # require 'gesttalt'
5
+ # Gesttalt::Snippets.create(".", 1735148400, "Example snippet", "const x = 1;", "example.zig")
6
+ #
7
+ require "gesttalt_ext"
Binary file
@@ -0,0 +1,2 @@
1
+ require "json"
2
+ require "gesttalt_ext/gesttalt_ext"
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gesttalt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.4
5
+ platform: x86_64-linux
6
+ authors:
7
+ - Pedro Pinera Buendia
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-01-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: A universal OAuth2.0 client written in Zig concurrency-ready
28
+ email:
29
+ - pedro@ppinera.es
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE
35
+ - README.md
36
+ - lib/gesttalt.rb
37
+ - lib/gesttalt_ext.rb
38
+ - lib/gesttalt_ext/gesttalt_ext.so
39
+ homepage: https://github.com/pepicrft/gesttalt
40
+ licenses:
41
+ - MIT
42
+ metadata:
43
+ homepage_uri: https://github.com/pepicrft/gesttalt
44
+ source_code_uri: https://github.com/pepicrft/gesttalt
45
+ changelog_uri: https://github.com/pepicrft/gesttalt/blob/main/CHANGELOG.md
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 2.7.0
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubygems_version: 3.5.22
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: A universal OAuth2.0 client written in Zig concurrency-ready
65
+ test_files: []