Flash helpers wraps bootstrap alerts component.

Default

<%= f('warning') %>
<%= f('warning') %>

With options

<%= f('error', type: :error) %> <%= f('success', type: :success) %> <%= f('info', type: :info) %> <%= f(type: :info, block: true, closable: false) do %>

This is an Info

The information here is a demo with block and without close button.

<% end %>
<%= f('error', type: :error) %>
<%= f('success', type: :success) %>
<%= f('info', type: :info) %>
<%= f(type: :info, block: true, closable: false) do %>
  <h4>This is an Info</h4>
  <p>The information here is a demo with block and without close button.</p>
<% end %>