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: e35b6d067b242807e17ebe21035c96dc7a88d8b29a6c5c20195775453baebcdf
4
- data.tar.gz: 2288701c0e401fa817c2afdb350e66ee6e58b0829a59f2fe1013d2208727728f
3
+ metadata.gz: d62ee3fce84557791bab4655ce543b6fce9a5ce323847c376c2b62c723bc803e
4
+ data.tar.gz: 555055db38db5cca7dca9392b1c8e54eac80d5c42ea14ce0f147d2a004d4ac23
5
5
  SHA512:
6
- metadata.gz: 1137aff4c79d76476844e2b91db1072e24351136c14dacaeb409517793622530771385c51e86c437cb9ecedb4f961797e545c18a5e3c9663c9aba6a5b0d9f0aa
7
- data.tar.gz: 8ae87b3f9a7ced60f5c848105e5af66a639d9177c199fd8c355241521a35a2f9b95e3c335ca39a8e9cb206d326c07ed5abdfad25049d7bc884b9814442ce33a0
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 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.
@@ -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
@@ -1,5 +1,5 @@
1
1
  module RcrewAI
2
2
  module Rails
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.3"
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
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.1
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: 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
@@ -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.4.10
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