alright this time in order:
$ rails new edge_bg --database=postgresql
#/Gemfile
gem 'haml-rails' # allows generators to write .haml files
group :assets do
gem 'compass-rails'
end
$ bundle
$ bundle exec compass init rails --using blueprint --syntax sass
$ rails generate controller Pages home about contact
#/config/application.rb:
Bundler.require(:default, :assets, Rails.env) if defined?(Bundler)
$ rails s #browse to localhost:3000/pages/about
#/app/views/layouts/application.html.haml
= stylesheet_link_tag 'screen'
# Above link throws:
# => Routing Error: No route matches "/stylesheets/screen.css"