rcrewai-rails 0.2.1 → 0.2.2
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/README.md +3 -3
- data/lib/rcrewai/rails/version.rb +1 -1
- data/lib/rcrewai/rails.rb +9 -0
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab4c1049d6f49f906f7991bfe2e70ca13eae005e350123fedbb33d9c128dae8a
|
4
|
+
data.tar.gz: 88a4149b211c36ea41031306b7ff3afb3cd01897302e0d22a6f51441f02e711b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a17be2f2e72bd8c094df56042ad06eb8cefbccb9959e3a88ecbb84e91f3ebcbde51ca2e01d90cfb59c989a7d65433d0241ec96251542a2252d00b6c816036bc
|
7
|
+
data.tar.gz: 549d4110f921a3a4d70f4ff0d6a0be7b1b72850c8b64f9c9de0ae611aeb5d9eeb5a06c97fcce0890b581c1df7eb01562966df8a8212bd41d85041cc5e1052c1b
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# RcrewAI Rails
|
2
2
|
|
3
|
-
Rails engine for integrating RcrewAI into your Rails applications. Provides ActiveRecord persistence, background job integration, generators, and a web UI for managing AI crews and agents.
|
3
|
+
Rails engine for integrating [RcrewAI](https://github.com/gkosmo/rcrewai-rails) into your Rails applications. Provides ActiveRecord persistence, background job integration, generators, and a web UI for managing AI crews and agents.
|
4
4
|
|
5
5
|
## Features
|
6
6
|
|
@@ -28,7 +28,7 @@ $ bundle install
|
|
28
28
|
Run the installation generator:
|
29
29
|
|
30
30
|
```bash
|
31
|
-
$ rails generate
|
31
|
+
$ rails generate rcrew_a_i:rails:install
|
32
32
|
$ rails db:migrate
|
33
33
|
```
|
34
34
|
|
@@ -219,4 +219,4 @@ Bug reports and pull requests are welcome on GitHub.
|
|
219
219
|
|
220
220
|
## License
|
221
221
|
|
222
|
-
The gem is available as open source under the terms of the MIT License.
|
222
|
+
The gem is available as open source under the terms of the MIT License.
|
data/lib/rcrewai/rails.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcrewai-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gkosmo
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rcrewai
|
@@ -274,7 +273,6 @@ metadata:
|
|
274
273
|
bug_tracker_uri: https://github.com/gkosmo/rcrewai-rails/issues
|
275
274
|
wiki_uri: https://github.com/gkosmo/rcrewai-rails/wiki
|
276
275
|
rubygems_mfa_required: 'true'
|
277
|
-
post_install_message:
|
278
276
|
rdoc_options: []
|
279
277
|
require_paths:
|
280
278
|
- lib
|
@@ -289,8 +287,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
289
287
|
- !ruby/object:Gem::Version
|
290
288
|
version: '0'
|
291
289
|
requirements: []
|
292
|
-
rubygems_version: 3.
|
293
|
-
signing_key:
|
290
|
+
rubygems_version: 3.6.9
|
294
291
|
specification_version: 4
|
295
292
|
summary: Rails integration for RcrewAI - Build AI agent crews with database persistence
|
296
293
|
and web UI
|