sutty/app/models/build_stat.rb
2019-08-01 21:20:42 -03:00

9 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