rcrewai-rails 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: aadb4d8abbd4b79d0a17b6e4f36e826354dd98a31d09616b8ac4c15e7c9891cb
4
- data.tar.gz: cd7047f28d7ee5de4ff15324df7d58424cd4fb8780f2f82989dd613959260e82
3
+ metadata.gz: e35b6d067b242807e17ebe21035c96dc7a88d8b29a6c5c20195775453baebcdf
4
+ data.tar.gz: 2288701c0e401fa817c2afdb350e66ee6e58b0829a59f2fe1013d2208727728f
5
5
  SHA512:
6
- metadata.gz: 74bbb33990e4fd0d9605560e2d8d00fb6e54bc370e04abc76e4f4a82228968eb67df81661da50b7d5d0f9f695bd0be9e8e07c3ffe2cedd8454b1123bd1e10f68
7
- data.tar.gz: cc6fa8206ab6e5dae0b54fca6f5bf90e972815a2d18ad945e0f120578b0eb467870f9e8c781cf48eafa7684e6713bf4b51b36cbddbec62df62b96feff77d8ef2
6
+ metadata.gz: 1137aff4c79d76476844e2b91db1072e24351136c14dacaeb409517793622530771385c51e86c437cb9ecedb4f961797e545c18a5e3c9663c9aba6a5b0d9f0aa
7
+ data.tar.gz: 8ae87b3f9a7ced60f5c848105e5af66a639d9177c199fd8c355241521a35a2f9b95e3c335ca39a8e9cb206d326c07ed5abdfad25049d7bc884b9814442ce33a0
@@ -1,5 +1,5 @@
1
1
  module RcrewAI
2
2
  module Rails
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  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,7 +1,7 @@
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo
@@ -178,8 +178,17 @@ dependencies:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  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
181
+ description: "RcrewAI Rails is a comprehensive Rails engine that brings AI agent orchestration
182
+ to your Rails applications. \nBuild intelligent AI crews that collaborate to solve
183
+ complex tasks with full database persistence, \nbackground job integration, and
184
+ a beautiful web dashboard for monitoring and management.\n\nFeatures:\n• ActiveRecord
185
+ models for crews, agents, tasks, and executions with full persistence\n• Rails generators
186
+ for scaffolding AI crews and agents\n• ActiveJob integration for asynchronous crew
187
+ execution (works with any Rails background job adapter)\n• Web dashboard with real-time
188
+ monitoring and management interface\n• Multi-LLM support: OpenAI GPT, Anthropic
189
+ Claude, Google Gemini, Azure OpenAI, Ollama\n• Production-ready with logging, error
190
+ handling, and security controls\n• Human-in-the-loop workflows with approval mechanisms\n•
191
+ Tool ecosystem: web search, file operations, SQL, email, code execution\n"
183
192
  email:
184
193
  - gkosmo1@hotmail.com
185
194
  executables: []
@@ -261,6 +270,10 @@ metadata:
261
270
  homepage_uri: https://github.com/gkosmo/rcrewai-rails
262
271
  source_code_uri: https://github.com/gkosmo/rcrewai-rails
263
272
  changelog_uri: https://github.com/gkosmo/rcrewai-rails/blob/main/CHANGELOG.md
273
+ documentation_uri: https://gkosmo.github.io/rcrewAI/
274
+ bug_tracker_uri: https://github.com/gkosmo/rcrewai-rails/issues
275
+ wiki_uri: https://github.com/gkosmo/rcrewai-rails/wiki
276
+ rubygems_mfa_required: 'true'
264
277
  post_install_message:
265
278
  rdoc_options: []
266
279
  require_paths:
@@ -279,5 +292,6 @@ requirements: []
279
292
  rubygems_version: 3.4.10
280
293
  signing_key:
281
294
  specification_version: 4
282
- summary: Rails integration for RcrewAI - AI agent orchestration framework
295
+ summary: Rails integration for RcrewAI - Build AI agent crews with database persistence
296
+ and web UI
283
297
  test_files: []