effective_mentorships 0.3.5 → 0.3.6

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: daf88eccf64adbd6f9aed6c91a541659eb618e31e8ed705ba598d9709423b9cb
4
- data.tar.gz: 822762c46281f00aae727442ad8110c5f54e0f626a123d8c571cf0ffca32b57f
3
+ metadata.gz: 89f09833bdc52d7e10307d22fc259a1c431202ee880cfb8afeffeb05976668bd
4
+ data.tar.gz: 9a3ed4e466b895985aba92f9e68aa048662a173466f2da76b7c9d9fb23699f6d
5
5
  SHA512:
6
- metadata.gz: 31ceaea33ba4c1c0384ced66025089f0575747bab9fb917d0fdd6c9006b1b0182d2253e16a08baf88a6a6e57848ca7b9b0c11f941a0ea227e76aeac38efbd612
7
- data.tar.gz: d70dc8510ba436a7a7adc28880817132f9e3474d0a337d48efb444b6c1a9396b32023514f7f2dfabee64f05d0e3b39985ea626a6383b7e397664bc8786192e65
6
+ metadata.gz: 0b6e973565692bf1c5fe7a5c3e60955a08ffd04cecb8cfb7665cc38f37f1ce961fcccafde07d80711e331820d9c345a81baf75205a725495a7860044c2d41545
7
+ data.tar.gz: e6c884418e37686b0f6af7c1b0de6fc7d893a85fac9518345ae0806ce0ae8e5ffe1c68fa22228eb92ff6d48d79adc9c9e5c095325c0c1816ba2345ae42c3022c
@@ -34,6 +34,9 @@ class CreateEffectiveMentorships < ActiveRecord::Migration[6.0]
34
34
  t.datetime :created_at
35
35
  end
36
36
 
37
+ add_index :mentorship_groups, :mentorship_cycle_id, if_not_exists: true
38
+ add_index :mentorship_groups, :token, if_not_exists: true
39
+
37
40
  create_table :mentorship_group_users do |t|
38
41
  t.integer :mentorship_cycle_id
39
42
  t.integer :mentorship_group_id
@@ -55,6 +58,10 @@ class CreateEffectiveMentorships < ActiveRecord::Migration[6.0]
55
58
  t.datetime :created_at
56
59
  end
57
60
 
61
+ add_index :mentorship_group_users, [:user_type, :user_id], if_not_exists: true
62
+ add_index :mentorship_group_users, :mentorship_group_id, if_not_exists: true
63
+ add_index :mentorship_group_users, :position, if_not_exists: true
64
+
58
65
  create_table :mentorship_registrations do |t|
59
66
  t.integer :mentorship_cycle_id
60
67
  t.integer :user_id
@@ -81,6 +88,10 @@ class CreateEffectiveMentorships < ActiveRecord::Migration[6.0]
81
88
  t.datetime :created_at
82
89
  end
83
90
 
91
+ add_index :mentorship_registrations, :mentorship_cycle_id, if_not_exists: true
92
+ add_index :mentorship_registrations, :user_id, if_not_exists: true
93
+ add_index :mentorship_registrations, :token, if_not_exists: true
94
+
84
95
  create_table :mentorship_bulk_groups do |t|
85
96
  t.integer :mentorship_cycle_id
86
97
  t.integer :mentorship_groups_count, default: 0
@@ -99,5 +110,7 @@ class CreateEffectiveMentorships < ActiveRecord::Migration[6.0]
99
110
  t.datetime :created_at
100
111
  end
101
112
 
113
+ add_index :mentorship_bulk_groups, :mentorship_cycle_id, if_not_exists: true
114
+ add_index :mentorship_bulk_groups, :token, if_not_exists: true
102
115
  end
103
116
  end
@@ -1,3 +1,3 @@
1
1
  module EffectiveMentorships
2
- VERSION = '0.3.5'
2
+ VERSION = '0.3.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_mentorships
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-24 00:00:00.000000000 Z
11
+ date: 2026-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -151,7 +151,7 @@ dependencies:
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
153
  - !ruby/object:Gem::Dependency
154
- name: effective_developer
154
+ name: effective_test_bot
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
157
  - - ">="
@@ -165,7 +165,7 @@ dependencies:
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
167
  - !ruby/object:Gem::Dependency
168
- name: effective_roles
168
+ name: effective_developer
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - ">="
@@ -179,19 +179,19 @@ dependencies:
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
181
  - !ruby/object:Gem::Dependency
182
- name: psych
182
+ name: effective_roles
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - "<"
185
+ - - ">="
186
186
  - !ruby/object:Gem::Version
187
- version: '4'
187
+ version: '0'
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - "<"
192
+ - - ">="
193
193
  - !ruby/object:Gem::Version
194
- version: '4'
194
+ version: '0'
195
195
  description: Mentorship matching for mentors and mentees rails engine
196
196
  email:
197
197
  - info@codeandeffect.com
@@ -292,7 +292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
292
292
  - !ruby/object:Gem::Version
293
293
  version: '0'
294
294
  requirements: []
295
- rubygems_version: 3.3.7
295
+ rubygems_version: 3.5.9
296
296
  signing_key:
297
297
  specification_version: 4
298
298
  summary: Mentorship matching for mentors and mentees rails engine