5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-19 15:16:21 +00:00

Merge branch 'issue-14352' of https://0xacab.org/sutty/sutty into 17.3.alpine.panel.sutty.nl

This commit is contained in:
Sutty 2023-09-25 17:58:49 +00:00
commit 1ea0dae4d2
2 changed files with 6 additions and 2 deletions

View file

@ -608,6 +608,7 @@ DEPENDENCIES
jbuilder (~> 2.5)
jekyll (~> 4.2.0)
jekyll-commonmark (~> 1.4.0)
jekyll-data
jekyll-images
jekyll-include-cache
kaminari

View file

@ -602,10 +602,13 @@ class Site < ApplicationRecord
@gemfile_lock_path ||= File.join(path, 'Gemfile.lock')
end
# Detecta si el Gemfile.lock fue modificado
# Detecta si el Gemfile.lock fue modificado con respecto al sitio o al
# Gemfile.
def gemfile_lock_updated?
return false unless gemfile_lock_path?
updated_at < File.mtime(gemfile_lock_path)
[updated_at, File.mtime(File.join(path, 'Gemfile'))].any? do |compare|
compare < File.mtime(gemfile_lock_path)
end
end
end