Class: Shugo::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/shugo/install_generator.rb

Overview

Installs the rubocop.yml files into a rails project that inherits from this gem.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.source_rootObject



7
8
9
# File 'lib/generators/shugo/install_generator.rb', line 7

def self.source_root
  @source_root ||= File.expand_path(File.join(File.dirname(__FILE__), 'templates'))
end

Instance Method Details

#create_db_migrate_rubocop_ymlObject



15
16
17
# File 'lib/generators/shugo/install_generator.rb', line 15

def create_db_migrate_rubocop_yml
  template 'db_migrate_rubocop.yml', 'db/migrate/.rubocop.yml' if Dir.exist?(db_path)
end

#create_root_rubocop_ymlObject



11
12
13
# File 'lib/generators/shugo/install_generator.rb', line 11

def create_root_rubocop_yml
  template 'rubocop.yml', '.rubocop.yml'
end