# frozen_string_literal: true module Rating class InstallGenerator < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) desc 'creates Rating migration' def create_migration template 'db/migrate/create_rating_tables.rb', "db/migrate/#{timestamp}_create_rating_tables.rb" end private def timestamp Time.current.strftime '%Y%m%d%H%M%S' end end end