Socket
Book a DemoInstallSign in
Socket

rack-env-notifier

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack-env-notifier

0.0.6
bundlerRubygems
Version published
Maintainers
1
Created
Source

Rack::EnvNotifier Build Status

Code Climate Dependency Status Gem Version

Middleware that displays a custom notification for every HTML page. It's designed to work both in production and development.

Installation

Add this line to your application's Gemfile:

gem 'rack-env-notifier'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack-env-notifier

Usage

For Rails add use the middleware in application.rb:

config.middleware.use Rack::EnvNotifier

Rack::EnvNotifier can display a custom notification on every html page. It can be configured:

Rack::EnvNotifier.notify = Rails.env.production?

or

Rack::EnvNotifier.notify = true if ["12.34.56.78", "127.0.0.1"].include?(request.remote_ip)

There are several configuration options

Position on screen

The notification message is wrapped by #env-notifer CSS ID. This can be customized using custom CSS.

To disable default CSS and use a custom one, configure the initializer:

Rack::EnvNotifier.custom_css = true

and define the custom CSS:

#env-notifier {
  font-size: 16px;
}

/* Rack::EnvNotifier.message = 'development' */

#env-notifier.development {
  background: #369;
  color: #fff;
}

/* Rack::EnvNotifier.message = 'watch out! production environment!!!' */

#env-notifier.watch-out-production-environment {
  background: #8a0000;
  color: #fff;
  font-weight: bold;
}

Notification message

Rack::EnvNotifier.message = "development mode"

The default message is configured in the initializer:

case Rails.env
when "development"
  Rack::EnvNotifier.message = "safe environment"
when "staging"
  Rack::EnvNotifier.message = "qa environment"
else
  Rack::EnvNotifier.message = "hot environment"
end

Rails Sample Initializer

if Rails.env.development?
  Rack::EnvNotifier.notify = true
  Rack::EnvNotifier.message = 'Dev'
end

Preview

alt tag

alt tag

alt tag

alt tag

alt tag

alt tag

alt tag

Contributing

Thanks to our contributors.

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

Inspired by harleyttd / miniprofiler.

Bitdeli Badge

FAQs

Package last updated on 27 Jul 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.