# frozen_string_literal: true

module Lite
  module Uxid
    class InstallGenerator < Rails::Generators::Base

      source_root File.expand_path("../templates", __FILE__)

      def copy_initializer_file
        copy_file("install.rb", "config/initializers/lite_uxid.rb")
      end

    end
  end
end