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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7ccbf2566f4dd5ff3c05e550df972b800bd465b383bbd6464dbed34206a7a0a
4
- data.tar.gz: 2e9e5bcb9e60c831de10e5c789fe285081938cc020a57d5f1fafef60f3e6deeb
3
+ metadata.gz: e2e00aee0753a3f895d0559b915f05d4037805bc227797b0951b70ec33e9d8e7
4
+ data.tar.gz: e207ea0e00d74c2e2b36fa6b505430df47e3debb4403703c3cf97bda49112bca
5
5
  SHA512:
6
- metadata.gz: 2e672b26d285707b81cf8c6bf420547a46834438cdef1e7b9f67ab072cfa1d3a72e879d1a42c4a1f14493af92e6a74c57241cef4588f1fd23926a4cd2cdcdd9a
7
- data.tar.gz: df569b4df17b4787063bbfa694939eaf606cc39f3efc166f9a8e9aafb707e75a897e86b118417fc7f55df50ae414a04dfbffdb8cebdd36b5d422f881280d5d58
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
@@ -17,5 +17,6 @@ module Exots
17
17
 
18
18
  Node = new('node')
19
19
  Bun = new('bun')
20
+ Python = new('python3')
20
21
  end
21
22
  end
data/lib/exots/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Exots
4
- VERSION = '0.1.0'
4
+ VERSION = '0.2.0'
5
5
  end
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.1.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-02-05 00:00:00.000000000 Z
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