mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 17:31:42 +00:00
8 lines
218 B
Ruby
8 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Recolecta estadísticas durante la generación del sitio
|
|
class BuildStat < ApplicationRecord
|
|
belongs_to :deploy
|
|
|
|
scope :jekyll, -> { where(action: 'bundle_exec_jekyll_build') }
|
|
end
|