0.02
Repository is archived
No release in over 3 years
Low commit activity in last 3 years
Get a nice, clean badge displaying your Rails Environment or other helpful info. Want to display last deploy date? Or maybe the status of some app wide settings? Throw it in HoneyBadger! He just doesn't care!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

HoneyBadger

Get a nice, clean badge displaying your Rails Environment or other helpful info. Want to display last deploy date? Or maybe the status of some app wide settings? Throw it in HoneyBadger! He just doesn't care!

HoneyBadger Demo

Usage (requires Rails 3.1)

Add to your Gemfile:

gem "honey_badger"

In your application layout somewhere, probably just below your body tag, render the honey_badger helper:

<%= honey_badger unless Rails.env.production? %>

If you want to display something other than the current environment name, just pass it in:

<%= honey_badger "Don't Care" %>

Or pass in an array to display more than one interesting fact in your badge (each will be displayed on its own line):

<%= honey_badger ["eats larva", "skin is loose"] %>

Add the require for the css in your application.css (using Rails 3.1 sprockets awesomeness):

/*
 *= require honey_badger
 */

Make sure to put the honey_badger above your own SCSS requires, or else the honey badger might get nasty. It'll just take what it wants.

Customization

You can customize colors and add custom environment names by importing honey_badger into your SCSS file. Let's say you like the color green and your Rails.env is demo:

@import 'honey_badger';

.honey-badger.demo {
  @include corner-banner(#336600);
}

To see what else you can customize, take a look at honey_badger.css.scss.

Authors

  • Rob Sanheim
  • Jamie Kite

This project rocks and uses MIT-LICENSE.