effective_mentorships 0.3.7 → 0.4.0
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 +4 -4
- data/config/effective_mentorships.rb +1 -4
- data/lib/effective_mentorships/version.rb +1 -1
- data/lib/effective_mentorships.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 984cc756545d2cc193f9653d63ab849aa43b33589b0de88021fa8b554102a6b2
|
|
4
|
+
data.tar.gz: 3765acfee28560392a86fe6c7f3b4931fee360f8ae0383903f4b1cf842ed7700
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96b76f61df6424149c0eb481136d6dde98c05568fd429dc015a6635513e994aef55e272ca63be3ca84167ac7c1d209e4a59c1f8484d7f0645e51c8d8c70633db
|
|
7
|
+
data.tar.gz: a2be31e21892907cb7448fe8440e93f4da8884bb58730280b5cdfb64aead064a3e107bb15f84cb2e3e1ac9bd011ebe5706b90fda2bb627cf00e6eab2ee523330
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
EffectiveMentorships.setup do |config|
|
|
2
2
|
# Layout Settings
|
|
3
3
|
# Configure the Layout per controller, or all at once
|
|
4
|
-
config.layout = {
|
|
5
|
-
mentorships: 'application',
|
|
6
|
-
admin: 'admin'
|
|
7
|
-
}
|
|
4
|
+
# config.layout = { mentorships: 'application', admin: 'admin' }
|
|
8
5
|
|
|
9
6
|
# Mentorship Class Settings
|
|
10
7
|
# Configure the class responsible for the mentorships
|
|
@@ -21,15 +21,15 @@ module EffectiveMentorships
|
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def self.MentorshipBulkGroup
|
|
24
|
-
|
|
24
|
+
klass(:mentorship_bulk_group)
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def self.MentorshipGroup
|
|
28
|
-
|
|
28
|
+
klass(:mentorship_group)
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def self.MentorshipRegistration
|
|
32
|
-
|
|
32
|
+
klass(:mentorship_registration)
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
def self.MentorshipCycle
|