simpler_navigation 0.1.5 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ac165ac094cedb9dde1875566c903d0312a005525a33235899089038b723a75
|
4
|
+
data.tar.gz: 5417062d855cef5368d129cf9f94615d13960a11c1e01fb066aae895849895db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f885bb2d8c54952e32dd159061397f6f1769f83258e674fed867cef193c38d76d877176bee00945edee58f5ac8c89bb53d2c4f13bd282e9682d68cab4a6873d
|
7
|
+
data.tar.gz: 97127515e3be1bed372ed7dc936a64922fd4ef2bac59b586d5367a6ccca19c27d8022b71745257eb36ed4a2c1f08346e720ea5bdec574a788beb5cc3bd3cc24e
|
data/Gemfile.lock
CHANGED
@@ -7,6 +7,10 @@ module SimplerNavigation
|
|
7
7
|
include ActionView::Helpers::UrlHelper
|
8
8
|
include ActionView::Helpers::OutputSafetyHelper
|
9
9
|
|
10
|
+
attr_reader :context
|
11
|
+
attr_reader :item
|
12
|
+
attr_reader :options
|
13
|
+
|
10
14
|
def initialize(context, item, options = {})
|
11
15
|
@selected = {}
|
12
16
|
@active_leaf = {}
|
@@ -121,7 +125,7 @@ module SimplerNavigation
|
|
121
125
|
when Regexp
|
122
126
|
selected = item.options[:highlights_on].match?(@request_fullpath)
|
123
127
|
when Proc
|
124
|
-
selected = item.options[:highlights_on].call
|
128
|
+
selected = item.options[:highlights_on].call(self)
|
125
129
|
else
|
126
130
|
item_url_path = url_path(item.url).downcase
|
127
131
|
selected = @request_fullpath.downcase.start_with?(item_url_path)
|
@@ -152,7 +156,7 @@ module SimplerNavigation
|
|
152
156
|
|
153
157
|
show = true
|
154
158
|
if !item.options[:if].nil?
|
155
|
-
show = item.options[:if].call
|
159
|
+
show = item.options[:if].call(self)
|
156
160
|
elsif !item.options[:unless].nil?
|
157
161
|
show = !item.options[:unless].call
|
158
162
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simpler_navigation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Muerdter
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionview
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: '0'
|
87
87
|
requirements: []
|
88
|
-
rubygems_version: 3.4.
|
88
|
+
rubygems_version: 3.4.10
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: A Rails gem to handle navigation menus and breadcrumbs.
|