# frozen_string_literal: true module Fimon class Generator < Thor::Group include Thor::Actions attr_accessor :options def self.source_root File.join(__dir__, "templates") end def create_config_file copy_file "fimon.yml", options[:config] end no_commands do # Add helper methods here end end end