Sha256: 3a04320e1483c4f7976112388000d39534dff9b79040aed83f8797bb0d506157
Contents?: true
Size: 614 Bytes
Versions: 1
Compression:
Stored size: 614 Bytes
Contents
# frozen_string_literal: true require 'rails/generators' module Rails class DecoratorGenerator < Rails::Generators::NamedBase source_root File.expand_path('../templates', __FILE__) check_class_collision suffix: 'Decorator' def copy_files path = File.join('app', 'decorators', class_path, "#{file_name}_decorator.rb") empty_directory('app/decorators') template('decorator.rb.tt', path) end private def file_name @_file_name ||= remove_possible_suffix(super) end def remove_possible_suffix(name) name.sub(/_?decorator$/i, '') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lite-decorator-1.0.2 | lib/generators/rails/decorator_generator.rb |