Sha256: 4c85cc9d3759eec962c5546fa32510b74ae6978c35dc4ef01de2b80ff965bb44
Contents?: true
Size: 1015 Bytes
Versions: 2
Compression:
Stored size: 1015 Bytes
Contents
require 'rails/generators/erb/controller/controller_generator' require 'rails/generators/rails/controller/controller_generator' module Erb module Generators class ControllerGenerator 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 ControllerGenerator def generate_locale_file invoke('locale:controller', [name]) if ActiveGenerator.configuration.autoload_controller_generator_locale end def generate_test_file unless ActiveGenerator.configuration.test_framework.nil? invoke("#{ActiveGenerator.configuration.test_framework}:controller", [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/controller_generator.rb |
active_generator-2.3.1 | lib/generators/rails/controller_generator.rb |