navigator_rails 0.0.6 → 0.0.7
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/README.rdoc +45 -1
- data/lib/navigator_rails/navigator.rb +2 -4
- data/lib/navigator_rails/store.rb +3 -1
- data/lib/navigator_rails/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +15 -0
- data/test/test_helper.rb +2 -0
- metadata +33 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a2e854e9027767c42083891e4a7795691788a7c
|
4
|
+
data.tar.gz: 2e60427957fb82d5d9e3a161c823a2daf0488d98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecf892bd43ec1b2ebff9f0eacab89e892c36959b84740f646763187ad7716b8deff7677443c0af6030137e5e88422db72c872637eeb7d80c1b18ae3fb1f0cf45
|
7
|
+
data.tar.gz: 0c3692e7d153532b194a337d9a20f05f51846b0f78fd959b0ddbf3cc663b73caa521440788c032781fc667b5c57c0cf38ad04503aa6a29e8470bc4efa45819a6
|
data/README.rdoc
CHANGED
@@ -1,6 +1,50 @@
|
|
1
1
|
= NavigatorRails
|
2
2
|
|
3
|
-
This
|
3
|
+
This is a gem intended to make (bootstrap-)menu generation clean and easy.
|
4
|
+
|
5
|
+
== Installation
|
6
|
+
|
7
|
+
Add the following to your Gemfile
|
8
|
+
|
9
|
+
gem 'navigator_rails'
|
10
|
+
|
11
|
+
And run
|
12
|
+
|
13
|
+
bundle install
|
14
|
+
|
15
|
+
== Setup
|
16
|
+
|
17
|
+
Run
|
18
|
+
|
19
|
+
rails g navigator_rails:install
|
20
|
+
|
21
|
+
to get the initializer under
|
22
|
+
|
23
|
+
config/initializers/navigator.rb
|
24
|
+
|
25
|
+
Customizer the brand to your needs.
|
26
|
+
|
27
|
+
== Attaching Actions to the menu
|
28
|
+
|
29
|
+
Put
|
30
|
+
|
31
|
+
include NavigatorRails::Navigatable
|
32
|
+
|
33
|
+
in every controller, which may add menu_items
|
34
|
+
|
35
|
+
Then add the menu_items like follows:
|
36
|
+
|
37
|
+
menu_item path: unix_like_path_of_item_position, constraint: ruby_code_as_string_should_return_true_for_displaying, content: ruby_code_which_will_be_embedded, active_on: action_name_of_as_symbol, order: unique_integer, type: decorator_type_as_symbol
|
38
|
+
|
39
|
+
Example:
|
40
|
+
|
41
|
+
menu_item path: '/head/left/Posts/new', constraint: 'can? :create, Post', content: 'link_to "Posts", new_post_path', order: 1, active_on: :index
|
42
|
+
|
43
|
+
= Structure
|
44
|
+
|
45
|
+
The menu-builder will create the missing items in between the item and the root-item applying the decorators defined in
|
46
|
+
|
47
|
+
NavigatiorRails.config[:decorators]
|
4
48
|
|
5
49
|
= Code Climate
|
6
50
|
|
@@ -2,10 +2,8 @@ module NavigatorRails
|
|
2
2
|
class Navigator
|
3
3
|
class << self
|
4
4
|
def render path
|
5
|
-
context
|
6
|
-
|
7
|
-
Constraint.context=context
|
8
|
-
Decorator.context=context
|
5
|
+
Constraint.context = binding.of_caller(1)
|
6
|
+
Decorator.context = binding.of_caller(1)
|
9
7
|
|
10
8
|
path = Item.normalize_path(path)
|
11
9
|
resource = Store.get(path)
|
@@ -83,7 +83,9 @@ module NavigatorRails
|
|
83
83
|
end
|
84
84
|
end
|
85
85
|
def collect
|
86
|
-
NavigatorRails.config
|
86
|
+
config = NavigatorRails.config
|
87
|
+
return unless config and config[:search_at]
|
88
|
+
config[:search_at].each do |dir|
|
87
89
|
Dir["#{dir}/**/*.rb"].each do |file|
|
88
90
|
get_items_of get_controller(dir, file)
|
89
91
|
end
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
------------------------------
|
3
|
+
NavigatorRailsTest: test_truth
|
4
|
+
------------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
------------------------------
|
8
|
+
NavigatorRailsTest: test_truth
|
9
|
+
------------------------------
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
------------------------------
|
13
|
+
NavigatorRailsTest: test_truth
|
14
|
+
------------------------------
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: navigator_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mathias Kaufmann
|
@@ -52,6 +52,34 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: codeclimate-test-reporter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: sqlite3
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
55
83
|
description: Describe your navigationbar longaside actions in your controllers and
|
56
84
|
not somewhere else!
|
57
85
|
email:
|
@@ -116,6 +144,8 @@ files:
|
|
116
144
|
- test/dummy/config/locales/en.yml
|
117
145
|
- test/dummy/config/routes.rb
|
118
146
|
- test/dummy/config/secrets.yml
|
147
|
+
- test/dummy/db/test.sqlite3
|
148
|
+
- test/dummy/log/test.log
|
119
149
|
- test/dummy/public/404.html
|
120
150
|
- test/dummy/public/422.html
|
121
151
|
- test/dummy/public/500.html
|
@@ -177,6 +207,8 @@ test_files:
|
|
177
207
|
- test/dummy/config/routes.rb
|
178
208
|
- test/dummy/config/secrets.yml
|
179
209
|
- test/dummy/config.ru
|
210
|
+
- test/dummy/db/test.sqlite3
|
211
|
+
- test/dummy/log/test.log
|
180
212
|
- test/dummy/public/404.html
|
181
213
|
- test/dummy/public/422.html
|
182
214
|
- test/dummy/public/500.html
|