rcrewai-rails 0.2.3 → 0.2.4

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: d62ee3fce84557791bab4655ce543b6fce9a5ce323847c376c2b62c723bc803e
4
- data.tar.gz: 555055db38db5cca7dca9392b1c8e54eac80d5c42ea14ce0f147d2a004d4ac23
3
+ metadata.gz: 549c659f778f292e8677b5f5cbf13461ba9873d044dd12317cb4f7944ec7ee46
4
+ data.tar.gz: a8d6363f2648b9c8791064f4b747d7c602d988a9372999142ad28be827f38c24
5
5
  SHA512:
6
- metadata.gz: bfcc8b9814d5c33e4dd570fb7140f956e89056d846e6388e959b0d154a2fce73d2194ff7ebc16d10370b8c89e416a16ffcd7bcb907da7476777d957a568482a9
7
- data.tar.gz: 23bdaee145a4d6f8561a1f242ecd653dcf2c80f4d3322fb5e93ae4d7193dcbbc39763321bae757897ff2734897b34a828520b6d142e48517bcf8ab4653712095
6
+ metadata.gz: 22d327599cb0fa2bb640a97e996a60235a35eef0a65ba66246918450cf002b82a65df1c03c7271f538bb35ee992eb6accbff3204f5f3e429caaa9f5863eb8ee4
7
+ data.tar.gz: c777c68dc9dfa1ae135b93b44f3ab2b5e36d97e63d06d8c94a6c1e2bca5db6e250df8a6955ac9b942dae5acfda73a988a542c3115fe4b1730bd90846b5e4a628
@@ -37,7 +37,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
37
37
  t.timestamps
38
38
  end
39
39
 
40
- add_index :rcrewai_agents, :crew_id
41
40
  add_index :rcrewai_agents, :name
42
41
 
43
42
  create_table :rcrewai_tasks do |t|
@@ -57,7 +56,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
57
56
  t.timestamps
58
57
  end
59
58
 
60
- add_index :rcrewai_tasks, :crew_id
61
59
  add_index :rcrewai_tasks, :position
62
60
 
63
61
  create_table :rcrewai_task_assignments do |t|
@@ -92,7 +90,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
92
90
  t.timestamps
93
91
  end
94
92
 
95
- add_index :rcrewai_executions, :crew_id
96
93
  add_index :rcrewai_executions, :status
97
94
  add_index :rcrewai_executions, :created_at
98
95
 
@@ -106,7 +103,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
106
103
  t.timestamps
107
104
  end
108
105
 
109
- add_index :rcrewai_execution_logs, :execution_id
110
106
  add_index :rcrewai_execution_logs, :level
111
107
  add_index :rcrewai_execution_logs, :timestamp
112
108
  end
@@ -37,7 +37,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
37
37
  t.timestamps
38
38
  end
39
39
 
40
- add_index :rcrewai_agents, :crew_id
41
40
  add_index :rcrewai_agents, :name
42
41
 
43
42
  create_table :rcrewai_tasks do |t|
@@ -57,7 +56,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
57
56
  t.timestamps
58
57
  end
59
58
 
60
- add_index :rcrewai_tasks, :crew_id
61
59
  add_index :rcrewai_tasks, :position
62
60
 
63
61
  create_table :rcrewai_task_assignments do |t|
@@ -92,7 +90,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
92
90
  t.timestamps
93
91
  end
94
92
 
95
- add_index :rcrewai_executions, :crew_id
96
93
  add_index :rcrewai_executions, :status
97
94
  add_index :rcrewai_executions, :created_at
98
95
 
@@ -106,7 +103,6 @@ class CreateRcrewaiTables < ActiveRecord::Migration[7.0]
106
103
  t.timestamps
107
104
  end
108
105
 
109
- add_index :rcrewai_execution_logs, :execution_id
110
106
  add_index :rcrewai_execution_logs, :level
111
107
  add_index :rcrewai_execution_logs, :timestamp
112
108
  end
@@ -1,5 +1,5 @@
1
1
  module RcrewAI
2
2
  module Rails
3
- VERSION = "0.2.3"
3
+ VERSION = "0.2.4"
4
4
  end
5
5
  end
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.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo