Sha256: c2f960d90931947542431315e168ca2132f54d6fbe42754ed20dab8550758f6f
Contents?: true
Size: 973 Bytes
Versions: 2
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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_generator-2.4.0 | lib/generators/rails/mailer_generator.rb |
active_generator-2.3.1 | lib/generators/rails/mailer_generator.rb |