rcrewai-rails 0.2.1 → 0.2.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d62ee3fce84557791bab4655ce543b6fce9a5ce323847c376c2b62c723bc803e
|
4
|
+
data.tar.gz: 555055db38db5cca7dca9392b1c8e54eac80d5c42ea14ce0f147d2a004d4ac23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfcc8b9814d5c33e4dd570fb7140f956e89056d846e6388e959b0d154a2fce73d2194ff7ebc16d10370b8c89e416a16ffcd7bcb907da7476777d957a568482a9
|
7
|
+
data.tar.gz: 23bdaee145a4d6f8561a1f242ecd653dcf2c80f4d3322fb5e93ae4d7193dcbbc39763321bae757897ff2734897b34a828520b6d142e48517bcf8ab4653712095
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
nodejs 24.1.0
|
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.
|
@@ -14,7 +14,7 @@ module RcrewAI
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def create_migration_file
|
17
|
-
migration_template "create_rcrewai_tables.rb", "db/migrate/create_rcrewai_tables.rb"
|
17
|
+
migration_template "create_rcrewai_tables.rb", "db/migrate/create_rcrewai_tables.rb", migration_class_name: "CreateRcrewaiTables"
|
18
18
|
end
|
19
19
|
|
20
20
|
def create_initializer
|
@@ -14,7 +14,7 @@ module RcrewAI
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def create_migration_file
|
17
|
-
migration_template "create_rcrewai_tables.rb", "db/migrate/create_rcrewai_tables.rb"
|
17
|
+
migration_template "create_rcrewai_tables.rb", "db/migrate/create_rcrewai_tables.rb", migration_class_name: "CreateRcrewaiTables"
|
18
18
|
end
|
19
19
|
|
20
20
|
def create_initializer
|
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.3
|
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
|
@@ -195,6 +194,7 @@ executables: []
|
|
195
194
|
extensions: []
|
196
195
|
extra_rdoc_files: []
|
197
196
|
files:
|
197
|
+
- ".tool-versions"
|
198
198
|
- MIT-LICENSE
|
199
199
|
- README.md
|
200
200
|
- Rakefile
|
@@ -274,7 +274,6 @@ metadata:
|
|
274
274
|
bug_tracker_uri: https://github.com/gkosmo/rcrewai-rails/issues
|
275
275
|
wiki_uri: https://github.com/gkosmo/rcrewai-rails/wiki
|
276
276
|
rubygems_mfa_required: 'true'
|
277
|
-
post_install_message:
|
278
277
|
rdoc_options: []
|
279
278
|
require_paths:
|
280
279
|
- lib
|
@@ -289,8 +288,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
289
288
|
- !ruby/object:Gem::Version
|
290
289
|
version: '0'
|
291
290
|
requirements: []
|
292
|
-
rubygems_version: 3.
|
293
|
-
signing_key:
|
291
|
+
rubygems_version: 3.6.9
|
294
292
|
specification_version: 4
|
295
293
|
summary: Rails integration for RcrewAI - Build AI agent crews with database persistence
|
296
294
|
and web UI
|