Sha256: b6752a4a71c4939365038fed8a3ae922e52dbe947501b02644f4ca3da7b72ca0
Contents?: true
Size: 973 Bytes
Versions: 3
Compression:
Stored size: 973 Bytes
Contents
require 'rails/generators/erb/mailer/mailer_generator' require 'rails/generators/mailer/mailer_generator' module Erb module Generators class MailerGenerator def generate_locale_file invoke("locale:view", [name]) if ActiveGenerator.configuration.autoload_view_generator_locale end def generate_test_file unless ActiveGenerator.configuration.test_framework.nil? invoke("#{ActiveGenerator.configuration.test_framework}:view", [name]) rescue nil end end end end end module Rails module Generators class MailerGenerator def generate_locale_file invoke("locale:mailer", [name]) if ActiveGenerator.configuration.autoload_mailer_generator_locale end def generate_test_file unless ActiveGenerator.configuration.test_framework.nil? invoke("#{ActiveGenerator.configuration.test_framework}:mailer", [name]) rescue nil end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems