sutty/app/models/build_stat.rb

9 lines
218 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Recolecta estadísticas durante la generación del sitio
class BuildStat < ApplicationRecord
belongs_to :deploy
2019-08-02 00:20:42 +00:00
scope :jekyll, -> { where(action: 'bundle_exec_jekyll_build') }
end