Thursday, June 04, 2026 1:23:50 AM
> project show esm_website_v1
The unexpected heart of the ESM ecosystem. What started as a simple Rails dashboard has evolved into the command center for thousands of gaming communities, proving that sometimes the best infrastructure projects are the ones you never planned to build.
Details
> application_record.rb
# frozen_string_literal: true

class ApplicationRecord < ActiveRecord::Base
  # =============================================================================
  # INITIALIZE
  # =============================================================================

  include PublicAttributes

  primary_abstract_class

  # =============================================================================
  # DATA STRUCTURE
  # =============================================================================

  # =============================================================================
  # ASSOCIATIONS
  # =============================================================================

  # =============================================================================
  # VALIDATIONS
  # =============================================================================

  # =============================================================================
  # CALLBACKS
  # =============================================================================

  # =============================================================================
  # SCOPES
  # =============================================================================

  # =============================================================================
  # CLASS METHODS
  # =============================================================================

  # =============================================================================
  # INSTANCE METHODS
  # =============================================================================

  def dom_id
    "#{self.class.table_name.singularize}-#{public_id}"
  end

  def to_param
    public_id
  end
end
All opinions represented herein are my own
- © 2024 - 2026 itsthedevman
- build 4294fb2