toptal/chewy

View on GitHub
lib/generators/chewy/install_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Chewy
  module Generators
    class InstallGenerator < Rails::Generators::Base
      source_root File.expand_path('../templates', __dir__)

      def copy_configuration
        template 'chewy.yml', 'config/chewy.yml'
      end
    end
  end
end