lib/generators/clearance/install/templates/README in clearance-0.11.1 vs lib/generators/clearance/install/templates/README in clearance-0.11.2
- old
+ new
@@ -8,16 +8,16 @@
# config/environments/{development,test}.rb
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
In production it should be your app's domain name.
-2. Migrate:
+2. Display flashes. For example, in your application layout:
- rake db:migrate
-
-3. Display flashes. For example, in your application layout:
-
<% flash.each do |key, value| -%>
- <div class="flash <%= key %>"><%=h value %></div>
+ <div class="flash <%= key %>"><%= value %></div>
<% end -%>
+
+3. Migrate:
+
+ rake db:migrate
*******************************************************************************