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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f43e0d7fbb36756c86aa08413e5fb0be3c1568a
4
- data.tar.gz: 03f2e8968e73e5de02872af52d52ed57eebb97f9
3
+ metadata.gz: 3a2e854e9027767c42083891e4a7795691788a7c
4
+ data.tar.gz: 2e60427957fb82d5d9e3a161c823a2daf0488d98
5
5
  SHA512:
6
- metadata.gz: d230cbfe4873a039b7b4ef69daf08ec78c4bf26f5d048ad71567644663d11cf7f5d76b66386ba4e1e8bc973193587b41e9bb3c0d6733409b8a735119ab70a49b
7
- data.tar.gz: 81e78f418600d7d1575d50526353578becf42946d3d6430467b0b2e292ddcb47747a9a37d4ce6aafb000d945b12d0e7651d04f785ec307b0c24adeac19e43130
6
+ metadata.gz: ecf892bd43ec1b2ebff9f0eacab89e892c36959b84740f646763187ad7716b8deff7677443c0af6030137e5e88422db72c872637eeb7d80c1b18ae3fb1f0cf45
7
+ data.tar.gz: 0c3692e7d153532b194a337d9a20f05f51846b0f78fd959b0ddbf3cc663b73caa521440788c032781fc667b5c57c0cf38ad04503aa6a29e8470bc4efa45819a6
data/README.rdoc CHANGED
@@ -1,6 +1,50 @@
1
1
  = NavigatorRails
2
2
 
3
- This project rocks and uses MIT-LICENSE.
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 = binding.of_caller(1)
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[:search_at].each do |dir|
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
@@ -1,3 +1,3 @@
1
1
  module NavigatorRails
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
File without changes
@@ -0,0 +1,15 @@
1
+  (0.1ms) begin transaction
2
+ ------------------------------
3
+ NavigatorRailsTest: test_truth
4
+ ------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ------------------------------
8
+ NavigatorRailsTest: test_truth
9
+ ------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ------------------------------
13
+ NavigatorRailsTest: test_truth
14
+ ------------------------------
15
+  (0.0ms) rollback transaction
data/test/test_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require "codeclimate-test-reporter"
2
+ CodeClimate::TestReporter.start
1
3
  # Configure Rails Environment
2
4
  ENV["RAILS_ENV"] = "test"
3
5
 
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.6
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