Class: HappySeed::Generators::HtmlEmailGenerator

Inherits:
HappySeedGenerator
  • Object
show all
Defined in:
lib/generators/happy_seed/html_email/html_email_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.fingerprintObject



9
10
11
# File 'lib/generators/happy_seed/html_email/html_email_generator.rb', line 9

def self.fingerprint
  gem_available? 'premailer-rails'
end

Instance Method Details

#install_html_emailObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/generators/happy_seed/html_email/html_email_generator.rb', line 13

def install_html_email
  return if already_installed

  gem 'premailer-rails'
  gem 'nokogiri'

  Bundler.with_clean_env do
    run "bundle install --without production"
  end

  run 'bin/spring stop'

  remove_file 'app/views/layouts/mailer.html.erb'

  directory "."

end