require "rails/generators" module Ahoy module Stores module Generators class KafkaGenerator < Rails::Generators::Base source_root File.expand_path("../templates", __FILE__) def create_initializer template "kafka_initializer.rb", "config/initializers/ahoy.rb" end end end end end