Project

navbar

0.0
No commit activity in last 3 years
No release in over 3 years
Rails Navigation Bar Builder
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 3.1.0
~> 1.3
>= 0
~> 2.13
 Project Readme

Navbar

Rails Navigation Bar Renderer

Gem Version Build Status

Installation

Add this line to your application's Gemfile:

gem 'navbar'

Or install it yourself as:

$ gem install navbar

Usage

In rails view

= navbar class: "navbar" do |tab|
  = tab.first "First", first_path
  = tab.second "Second", second_path
  = tab.third "Third", third_path

In rails controller

class ItemsController < ApplicationController
  nav_tab :first, class: "bold"
  nav_tab :second, active: true

  ...
end

Will render

<ul class="navbar">
  <li class="bold"><a href="/first">First</a></li>
  <li class="active"><a href="/second">Second</a></li>
  <li><a href="/third">Third</a></li>
</ul>