rcrewai-rails 0.2.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aadb4d8abbd4b79d0a17b6e4f36e826354dd98a31d09616b8ac4c15e7c9891cb
4
- data.tar.gz: cd7047f28d7ee5de4ff15324df7d58424cd4fb8780f2f82989dd613959260e82
3
+ metadata.gz: ab4c1049d6f49f906f7991bfe2e70ca13eae005e350123fedbb33d9c128dae8a
4
+ data.tar.gz: 88a4149b211c36ea41031306b7ff3afb3cd01897302e0d22a6f51441f02e711b
5
5
  SHA512:
6
- metadata.gz: 74bbb33990e4fd0d9605560e2d8d00fb6e54bc370e04abc76e4f4a82228968eb67df81661da50b7d5d0f9f695bd0be9e8e07c3ffe2cedd8454b1123bd1e10f68
7
- data.tar.gz: cc6fa8206ab6e5dae0b54fca6f5bf90e972815a2d18ad945e0f120578b0eb467870f9e8c781cf48eafa7684e6713bf4b51b36cbddbec62df62b96feff77d8ef2
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 rcrewai:rails:install
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.
@@ -1,5 +1,5 @@
1
1
  module RcrewAI
2
2
  module Rails
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.2"
4
4
  end
5
5
  end
data/lib/rcrewai/rails.rb CHANGED
@@ -28,4 +28,13 @@ module RcrewAI
28
28
  end
29
29
  end
30
30
  end
31
+
32
+ # Delegate configure to Rails module for convenience
33
+ def self.configure(&block)
34
+ Rails.configure(&block)
35
+ end
36
+
37
+ def self.config
38
+ Rails.config
39
+ end
31
40
  end
@@ -6,8 +6,22 @@ Gem::Specification.new do |spec|
6
6
  spec.authors = ["gkosmo"]
7
7
  spec.email = ["gkosmo1@hotmail.com"]
8
8
 
9
- spec.summary = "Rails integration for RcrewAI - AI agent orchestration framework"
10
- spec.description = "A Rails engine that provides ActiveRecord persistence, background job integration, generators, and web UI for RcrewAI crews and agents"
9
+ spec.summary = "Rails integration for RcrewAI - Build AI agent crews with database persistence and web UI"
10
+ spec.description = <<~DESC
11
+ RcrewAI Rails is a comprehensive Rails engine that brings AI agent orchestration to your Rails applications.
12
+ Build intelligent AI crews that collaborate to solve complex tasks with full database persistence,
13
+ background job integration, and a beautiful web dashboard for monitoring and management.
14
+
15
+ Features:
16
+ • ActiveRecord models for crews, agents, tasks, and executions with full persistence
17
+ • Rails generators for scaffolding AI crews and agents
18
+ • ActiveJob integration for asynchronous crew execution (works with any Rails background job adapter)
19
+ • Web dashboard with real-time monitoring and management interface
20
+ • Multi-LLM support: OpenAI GPT, Anthropic Claude, Google Gemini, Azure OpenAI, Ollama
21
+ • Production-ready with logging, error handling, and security controls
22
+ • Human-in-the-loop workflows with approval mechanisms
23
+ • Tool ecosystem: web search, file operations, SQL, email, code execution
24
+ DESC
11
25
  spec.homepage = "https://github.com/gkosmo/rcrewai-rails"
12
26
  spec.license = "MIT"
13
27
  spec.required_ruby_version = ">= 3.0.0"
@@ -15,6 +29,10 @@ Gem::Specification.new do |spec|
15
29
  spec.metadata["homepage_uri"] = spec.homepage
16
30
  spec.metadata["source_code_uri"] = spec.homepage
17
31
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
32
+ spec.metadata["documentation_uri"] = "https://gkosmo.github.io/rcrewAI/"
33
+ spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
34
+ spec.metadata["wiki_uri"] = "#{spec.homepage}/wiki"
35
+ spec.metadata["rubygems_mfa_required"] = "true"
18
36
 
19
37
  spec.files = Dir.chdir(__dir__) do
20
38
  `git ls-files -z`.split("\x0").reject do |f|
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.0
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: 2025-08-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rcrewai
@@ -178,8 +177,17 @@ dependencies:
178
177
  - - "~>"
179
178
  - !ruby/object:Gem::Version
180
179
  version: '1.4'
181
- description: A Rails engine that provides ActiveRecord persistence, background job
182
- integration, generators, and web UI for RcrewAI crews and agents
180
+ description: "RcrewAI Rails is a comprehensive Rails engine that brings AI agent orchestration
181
+ to your Rails applications. \nBuild intelligent AI crews that collaborate to solve
182
+ complex tasks with full database persistence, \nbackground job integration, and
183
+ a beautiful web dashboard for monitoring and management.\n\nFeatures:\n• ActiveRecord
184
+ models for crews, agents, tasks, and executions with full persistence\n• Rails generators
185
+ for scaffolding AI crews and agents\n• ActiveJob integration for asynchronous crew
186
+ execution (works with any Rails background job adapter)\n• Web dashboard with real-time
187
+ monitoring and management interface\n• Multi-LLM support: OpenAI GPT, Anthropic
188
+ Claude, Google Gemini, Azure OpenAI, Ollama\n• Production-ready with logging, error
189
+ handling, and security controls\n• Human-in-the-loop workflows with approval mechanisms\n•
190
+ Tool ecosystem: web search, file operations, SQL, email, code execution\n"
183
191
  email:
184
192
  - gkosmo1@hotmail.com
185
193
  executables: []
@@ -261,7 +269,10 @@ metadata:
261
269
  homepage_uri: https://github.com/gkosmo/rcrewai-rails
262
270
  source_code_uri: https://github.com/gkosmo/rcrewai-rails
263
271
  changelog_uri: https://github.com/gkosmo/rcrewai-rails/blob/main/CHANGELOG.md
264
- post_install_message:
272
+ documentation_uri: https://gkosmo.github.io/rcrewAI/
273
+ bug_tracker_uri: https://github.com/gkosmo/rcrewai-rails/issues
274
+ wiki_uri: https://github.com/gkosmo/rcrewai-rails/wiki
275
+ rubygems_mfa_required: 'true'
265
276
  rdoc_options: []
266
277
  require_paths:
267
278
  - lib
@@ -276,8 +287,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
276
287
  - !ruby/object:Gem::Version
277
288
  version: '0'
278
289
  requirements: []
279
- rubygems_version: 3.4.10
280
- signing_key:
290
+ rubygems_version: 3.6.9
281
291
  specification_version: 4
282
- summary: Rails integration for RcrewAI - AI agent orchestration framework
292
+ summary: Rails integration for RcrewAI - Build AI agent crews with database persistence
293
+ and web UI
283
294
  test_files: []