exots 0.1.0 → 0.2.0
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/exots.gemspec +35 -0
- data/lib/exots/runner.rb +1 -0
- data/lib/exots/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2e00aee0753a3f895d0559b915f05d4037805bc227797b0951b70ec33e9d8e7
|
|
4
|
+
data.tar.gz: e207ea0e00d74c2e2b36fa6b505430df47e3debb4403703c3cf97bda49112bca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96dd1e9e3f3d6f304dcfe75de835a5b2cb161bedf8515bd8c10aec712055ee260fbb5f442edc78f178ac083b5d4f1cc1654ec3a952bcf849935f8221db478668
|
|
7
|
+
data.tar.gz: 2c64e6c588f8655ddfeb0143e98cfc2fb6b497faf89127c8dc82418b9890174fd33399c726fc9b413d579aa688fb35badc458d322d9f7c73fb15b52ff4bfcd48
|
data/exots.gemspec
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'lib/exots/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = 'exots'
|
|
7
|
+
spec.version = Exots::VERSION
|
|
8
|
+
spec.authors = ['sunteya']
|
|
9
|
+
spec.email = ['sunteya@gmail.com']
|
|
10
|
+
|
|
11
|
+
spec.summary = 'A Ruby client for executing JavaScript functions via an IPC bridge.'
|
|
12
|
+
spec.description = 'Exots provides a seamless bridge to spawn Node.js/Bun processes and execute functions via high-performance Unix Domain Sockets.'
|
|
13
|
+
spec.homepage = 'https://github.com/sunteya/exots'
|
|
14
|
+
spec.license = 'ISC'
|
|
15
|
+
spec.required_ruby_version = '>= 3.0.0'
|
|
16
|
+
|
|
17
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
|
18
|
+
|
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
21
|
+
spec.files = Dir.chdir(__dir__) do
|
|
22
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
23
|
+
(File.expand_path(f) == __FILE__) ||
|
|
24
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
# Add LICENSE and README.md manually as they are copied during build
|
|
28
|
+
spec.files += %w[LICENSE README.md]
|
|
29
|
+
|
|
30
|
+
spec.bindir = 'exe'
|
|
31
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
32
|
+
spec.require_paths = ['lib']
|
|
33
|
+
|
|
34
|
+
spec.add_dependency 'json'
|
|
35
|
+
end
|
data/lib/exots/runner.rb
CHANGED
data/lib/exots/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exots
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sunteya
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-09-24 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: json
|
|
@@ -35,6 +35,7 @@ files:
|
|
|
35
35
|
- LICENSE
|
|
36
36
|
- README.md
|
|
37
37
|
- Rakefile
|
|
38
|
+
- exots.gemspec
|
|
38
39
|
- lib/exots.rb
|
|
39
40
|
- lib/exots/client.rb
|
|
40
41
|
- lib/exots/context.rb
|