Last active
August 29, 2015 14:26
-
-
Save antonvasin/5a8f5addeeae6433616f to your computer and use it in GitHub Desktop.
ActionMailer + slim sans Rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Gemfile | |
| gem 'actionmailer', require: 'action_mailer' | |
| gem 'slim', require: false | |
| # boot.rb | |
| require 'rubygems' | |
| require 'bundler' | |
| require 'action_view' | |
| require 'slim' | |
| # config/initializers/slim.rb | |
| ActionView::Template.register_template_handler(:slim, Slim::RailsTemplate.new) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment