5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-09-29 01:16:57 +00:00
panel/lib/jekyll.rb

15 lines
251 B
Ruby
Raw Permalink Normal View History

2017-10-05 19:42:32 +00:00
# frozen_string_literal: true
require 'jekyll'
# Monkeypatcheando Jekyll
module Jekyll
# Métodos agregados o modificados a Site
class Site
# Obtener un nombre para el sitio
def name
@name ||= File.basename(dest)
end
end
end