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 +4 -4
- data/CHANGELOG.md +1 -0
- data/exe/oxaiworkers +13 -0
- data/lib/oxaiworkers/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b3b4eb6c020db58b365cb68881b30440eb11e30513237a3ff7dca7260274d3e
|
4
|
+
data.tar.gz: b5382e6983a58bd732c428c311072ffacd6fbece4d65a47e32033ce70a219610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84868bddc15e283d49b6ff586f90a5eb6abfc8ea09f53a8ab22a656cf09e5198ae44a08eff90a399097c9a321de2c37546c514220607d9bc643f8309040169df
|
7
|
+
data.tar.gz: 1c27771f8ace9608d603f27e96bad758b901fbe90596ed69d679793ee5ac5603b7da7086e6c0fb1ed924426d81ad4468bbe380a0bda9a080ab2888599f4c45e6
|
data/CHANGELOG.md
CHANGED
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
|
data/lib/oxaiworkers/version.rb
CHANGED
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.
|
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
|