mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 11:21:42 +00:00
fix: deprecar Site#run_in_path #13428
ya no es necesario y Dir.chdir no es concurrente, con lo que nos ahorramos posibles bugs.
This commit is contained in:
parent
e473de6a4e
commit
1c294d450e
1 changed files with 4 additions and 14 deletions
|
@ -212,10 +212,8 @@ class Site < ApplicationRecord
|
||||||
# Trae los datos del directorio _data dentro del sitio
|
# Trae los datos del directorio _data dentro del sitio
|
||||||
def data
|
def data
|
||||||
unless jekyll.data.present?
|
unless jekyll.data.present?
|
||||||
run_in_path do
|
jekyll.reader.read_data
|
||||||
jekyll.reader.read_data
|
jekyll.data['layouts'] ||= {}
|
||||||
jekyll.data['layouts'] ||= {}
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
jekyll.data
|
jekyll.data
|
||||||
|
@ -225,9 +223,7 @@ class Site < ApplicationRecord
|
||||||
# colecciones.
|
# colecciones.
|
||||||
def collections
|
def collections
|
||||||
unless @read
|
unless @read
|
||||||
run_in_path do
|
jekyll.reader.read_collections
|
||||||
jekyll.reader.read_collections
|
|
||||||
end
|
|
||||||
|
|
||||||
@read = true
|
@read = true
|
||||||
end
|
end
|
||||||
|
@ -322,9 +318,7 @@ class Site < ApplicationRecord
|
||||||
#
|
#
|
||||||
# @return [Hash]
|
# @return [Hash]
|
||||||
def theme_layouts
|
def theme_layouts
|
||||||
run_in_path do
|
jekyll.reader.read_layouts
|
||||||
jekyll.reader.read_layouts
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Trae todos los valores disponibles para un campo
|
# Trae todos los valores disponibles para un campo
|
||||||
|
@ -550,10 +544,6 @@ class Site < ApplicationRecord
|
||||||
I18n.t('activerecord.errors.models.site.attributes.design_id.layout_incompatible.error'))
|
I18n.t('activerecord.errors.models.site.attributes.design_id.layout_incompatible.error'))
|
||||||
end
|
end
|
||||||
|
|
||||||
def run_in_path(&block)
|
|
||||||
Dir.chdir path, &block
|
|
||||||
end
|
|
||||||
|
|
||||||
# Instala las gemas cuando es necesario:
|
# Instala las gemas cuando es necesario:
|
||||||
#
|
#
|
||||||
# * El sitio existe
|
# * El sitio existe
|
||||||
|
|
Loading…
Reference in a new issue