Sha256: 2a3c694419a6350db2112702fdf42669803695063c1426c79d0d994d5d565a34

Contents?: true

Size: 546 Bytes

Versions: 2

Compression:

Stored size: 546 Bytes

Contents

# frozen_string_literal: true

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")
      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

2 entries across 2 versions & 1 rubygems

Version Path
lite-decorator-1.1.2 lib/generators/rails/decorator_generator.rb
lite-decorator-1.1.1 lib/generators/rails/decorator_generator.rb