docs/UPGRADE_GUIDE.md in volt-0.9.5 vs docs/UPGRADE_GUIDE.md in volt-0.9.6.pre1

- old
+ new

@@ -2,9 +2,28 @@ CSS url's now should be referenced either 1) as relative paths from the css file, or 2) using the full path from inside of app (eg: main/assets/images/background.jpg) On models, .can_delete?, .can_read?, and .can_create? now return promises. +replace /config/base/index.html with: + +```ruby +<!DOCTYPE html> +<html> + <%# IMPORTANT: Please read before changing! %> + <%# This file is rendered on the server using ERB, so it does NOT use Volt's %> + <%# normal template system. You can add to it, but keep in mind the template %> + <%# language difference. This file handles auto-loading all JS/Opal and CSS. %> + <head> + <meta charset="UTF-8" /> + <%= javascript_tags %> + <%= css_tags %> + </head> + <body> + + </body> +</html> +``` Check the CHANGELOG for more info. # 0.9.3 to 0.9.4 We moved logic out of Volt::User and into the generated user file, so it is easier to customize. Add the following to your app/main/models/user.rb: \ No newline at end of file