
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
BootstrapNotify aims to be a simple notification system that you can easily drop into your Rails project for nice looking notify flashes. BootstrapNotify is based off of bootstrap-notify by user goodybag http://goodybag.github.com/bootstrap-notify/
You can see a demo at: http://goodybag.github.com/bootstrap-notify
This is a based off of my SCSS conversion of bootstrap-notify.
Requirements:
Add it to your Gemfile:
gem 'bootstrap_notify', 'v0.0.5'
v0.0.5 - Sprockets 3 support
Include the javascripts in application.js. Make sure to include after jQuery:
//= require jquery
//= require jquery_ujs
//= require bootstrap_notify
Import the SCSS after you import bootstrap:
@import "bootstrap";
@import "bootstrap_notify";
Quick and Dirty style:
Create a partial with the contents
# app/views/partials/_notify.html.haml
- if !notice.blank?
:javascript
$(document).ready(function () {
$('.top-right').notify({
message: { text: "#{notice}" }
}).show();
});
Render the partial in your layout with the <head>
tag, after your javascript and CSS have been included.
# app/views/layouts/application.html.haml
= render(:partial => "partials/notify")
Don't forget to include the div to attach the notification to:
# app/views/layouts/application.html.haml
.notifications.top-right
Additional configuration and placement options can be found at: http://goodybag.github.com/bootstrap-notify
You can offset the placement of the notification by adjusting the top, bottom, left or right variables.
$notify_right: 100px;
$notify_left: $notify_right;
$notify_top: 500px;
$notify_bottom: $notify_top;
@import "bootstrap_notify";
FAQs
Unknown package
We found that bootstrap_notify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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
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.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.