jejacks0n / navigasmic

Navigasmic: Semantic navigation for Rails using simple view level or configuration definitions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What differentiates navigasmic from simple_navigation?

jmuheim opened this issue · comments

I worked with simple_navigation already, and now I stumbled over navigasmic. So what do you think differentiates the two gems? You could mention the differences in the README, too.

Thank you!

Is it true that I can't use my path helpers when defining an item?

undefined local variable or method `users_path' for main:Object

You wanted more docs, but didn't read the critical parts? ;-P

It depends on where you do it. in the view, sure, in the config, no.. use a proc and put your path helper in it.

eg. proc { users_path }

I already put it into the views. It's working like a charm there. Thank you.