Sha256: df8b09ec080cb25e4d51522c780c0ed7e1daf8a79ddb58fa17313e44e6ce5042
Contents?: true
Size: 494 Bytes
Versions: 4
Compression:
Stored size: 494 Bytes
Contents
require 'rails/generators/rails/helper/helper_generator' module Rails module Generators class HelperGenerator def generate_locale_file invoke("locale:helper", [name]) if ActiveGenerator.configuration.autoload_helper_generator_locale end def generate_test_file unless ActiveGenerator.configuration.test_framework.nil? invoke("#{ActiveGenerator.configuration.test_framework}:helper", [name]) rescue nil end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems