ox-ai-workers 0.2.0 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6d3516a02ebb121bdf02d3de27e78ca5c71b893efa9a25b69217b9260819f7a
4
- data.tar.gz: 4ef7a7ef32d76506b5eb4e852d77a0cf979ba40c2ed74d4635081a774bf65d20
3
+ metadata.gz: 8b3b4eb6c020db58b365cb68881b30440eb11e30513237a3ff7dca7260274d3e
4
+ data.tar.gz: b5382e6983a58bd732c428c311072ffacd6fbece4d65a47e32033ce70a219610
5
5
  SHA512:
6
- metadata.gz: a432bb010d43b81c4041dd01ef5bf141ad3c2a61a44690dad1d4bd20efd2e206d8e28f1618c8f6137517a8366f0e0fe25a446893e3815393599a5ba5bc34434c
7
- data.tar.gz: 7a3932acb7227a48970deed5f131d016f83340f137a97efc1fb9b9b98ba6a8668f7ce9cf5247d4540d9ecebd3388af82d4a2cb08f31a987ba85b15d208fbb82e
6
+ metadata.gz: 84868bddc15e283d49b6ff586f90a5eb6abfc8ea09f53a8ab22a656cf09e5198ae44a08eff90a399097c9a321de2c37546c514220607d9bc643f8309040169df
7
+ data.tar.gz: 1c27771f8ace9608d603f27e96bad758b901fbe90596ed69d679793ee5ac5603b7da7086e6c0fb1ed924426d81ad4468bbe380a0bda9a080ab2888599f4c45e6
data/CHANGELOG.md CHANGED
@@ -3,6 +3,7 @@
3
3
  ## [0.2.0] - 2024-07-30
4
4
  - fix missing require 'open3'
5
5
  - fix Steps
6
+ - cli: oxaiworkers init
6
7
 
7
8
  ## [0.1.1] - 2024-07-29
8
9
 
data/exe/oxaiworkers ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'fileutils'
4
+
5
+ if ARGV.first == "init"
6
+ dir = '.oxaiworkers-local'
7
+ dest = "#{Dir.pwd}/#{dir}"
8
+ source = File.expand_path('../../', __FILE__)
9
+
10
+ FileUtils.mkdir_p dir + "/locales"
11
+ FileUtils.copy_entry source + "/locales", dest + "/locales"
12
+ FileUtils.cp(source+"/bin/console", dest)
13
+ end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OxAiWorkers
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ox-ai-workers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Smolev
@@ -107,7 +107,8 @@ description: |2
107
107
  - Ease of Use: Intuitive syntax and documentation make it easy to get started with the gem.
108
108
  email:
109
109
  - smolev@me.com
110
- executables: []
110
+ executables:
111
+ - oxaiworkers
111
112
  extensions: []
112
113
  extra_rdoc_files: []
113
114
  files:
@@ -116,6 +117,7 @@ files:
116
117
  - LICENSE
117
118
  - README.md
118
119
  - Rakefile
120
+ - exe/oxaiworkers
119
121
  - lib/ox-ai-workers.rb
120
122
  - lib/oxaiworkers/assistant/module_base.rb
121
123
  - lib/oxaiworkers/assistant/sysop.rb