Skip to content

Instantly share code, notes, and snippets.

@yoeun
Created July 27, 2011 15:18
Show Gist options
  • Select an option

  • Save yoeun/1109591 to your computer and use it in GitHub Desktop.

Select an option

Save yoeun/1109591 to your computer and use it in GitHub Desktop.
Setup Rails 3 for HAML, MySQL and Paperclip
module Example
class Application < Rails::Application
config.generators do |g|
g.template_engine :haml
end
end
end
gem 'mysql2', '< 0.3'
gem 'haml'
gem 'haml-rails'
gem 'paperclip', '~> 2.3'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment