
Security News
CISA’s 2025 SBOM Guidance Adds Hashes, Licenses, Tool Metadata, and Context
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
sinatra-simple-navigation
Advanced tools
h1. sinatra-simple-navigation
sinatra-simple-navigation is a sinatra extension enabling the use of the "simple-navigation":http://github.com/codeplant/simple-navigation gem in your sinatra and padrino applications.
h2. Installation
Either manually install the gem
@gem install sinatra-simple-navigation@
or preferably use bundler and add it to your Gemfile
@gem 'sinatra-simple-navigation'@
and run @bundle install@
h2. Usage
h3. Sinatra Applications
h4. Classic Style
To use simple-navigation in your classic style sinatra application, just require 'sinatra/simple-navigation':
require 'rubygems'
require 'sinatra'
require 'sinatra/simple-navigation'
# Your app code goes here
h4. Modular Style
If you're developing a module style sinatra application (i.e. subclassing Sinatra::Base), you have to register Sinatra::SimpleNavigation:
require 'rubygems'
require 'sinatra/base'
require 'sinatra/simple-navigation'
class MyApp < Sinatra::Base
register Sinatra::SimpleNavigation
# Your app code goes here
end
h3. Padrino Applications
Using simple-navigation in your padrino application is similar to the modular sinatra style. In your @app/app.rb@ file:
require 'sinatra/simple-navigation'
class MyApp < Padrino::Application
register Sinatra::SimpleNavigation
# Your app code goes here
end
Instead of requiring sinatra/simple-navigation at the top of the file, you could add this to your Gemfile:
@gem 'sinatra-simple-navigation', :require => 'sinatra/simple-navigation'@
h2. Resources
h2. Legal
Copyright (c) 2014 codeplant GmbH, released under the MIT license
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.