bridgetown-core 0.19.1 → 0.21.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bridgetown-core.gemspec +3 -4
- data/lib/bridgetown-core.rb +32 -16
- data/lib/bridgetown-core/cleaner.rb +7 -1
- data/lib/bridgetown-core/collection.rb +176 -77
- data/lib/bridgetown-core/commands/apply.rb +4 -3
- data/lib/bridgetown-core/commands/base.rb +9 -0
- data/lib/bridgetown-core/commands/build.rb +0 -11
- data/lib/bridgetown-core/commands/configure.rb +66 -0
- data/lib/bridgetown-core/commands/console.rb +4 -0
- data/lib/bridgetown-core/commands/doctor.rb +1 -19
- data/lib/bridgetown-core/commands/new.rb +8 -0
- data/lib/bridgetown-core/commands/plugins.rb +1 -0
- data/lib/bridgetown-core/commands/serve.rb +0 -14
- data/lib/bridgetown-core/component.rb +178 -0
- data/lib/bridgetown-core/concerns/data_accessible.rb +1 -0
- data/lib/bridgetown-core/concerns/front_matter_importer.rb +52 -0
- data/lib/bridgetown-core/concerns/site/configurable.rb +7 -3
- data/lib/bridgetown-core/concerns/site/content.rb +56 -15
- data/lib/bridgetown-core/concerns/site/processable.rb +1 -0
- data/lib/bridgetown-core/concerns/site/renderable.rb +26 -0
- data/lib/bridgetown-core/concerns/site/writable.rb +12 -2
- data/lib/bridgetown-core/concerns/validatable.rb +1 -4
- data/lib/bridgetown-core/configuration.rb +50 -29
- data/lib/bridgetown-core/configurations/.keep +0 -0
- data/lib/bridgetown-core/configurations/bt-postcss.rb +26 -0
- data/lib/bridgetown-core/configurations/bt-postcss/postcss.config.js +21 -0
- data/lib/bridgetown-core/configurations/minitesting.rb +95 -0
- data/lib/bridgetown-core/configurations/netlify.rb +6 -0
- data/lib/bridgetown-core/configurations/netlify/netlify.sh +14 -0
- data/lib/bridgetown-core/configurations/netlify/netlify.toml +44 -0
- data/lib/bridgetown-core/configurations/purgecss.rb +49 -0
- data/lib/bridgetown-core/configurations/stimulus.rb +49 -0
- data/lib/bridgetown-core/configurations/swup.rb +37 -0
- data/lib/bridgetown-core/configurations/tailwindcss.rb +29 -0
- data/lib/bridgetown-core/configurations/tailwindcss/css_imports.css +4 -0
- data/lib/bridgetown-core/configurations/tailwindcss/postcss.config.js +12 -0
- data/lib/bridgetown-core/configurations/turbo.rb +16 -0
- data/lib/bridgetown-core/converter.rb +23 -0
- data/lib/bridgetown-core/converters/erb_templates.rb +50 -41
- data/lib/bridgetown-core/converters/identity.rb +0 -9
- data/lib/bridgetown-core/converters/markdown.rb +14 -4
- data/lib/bridgetown-core/converters/markdown/kramdown_parser.rb +5 -38
- data/lib/bridgetown-core/converters/ruby_templates.rb +17 -0
- data/lib/bridgetown-core/converters/smartypants.rb +3 -1
- data/lib/bridgetown-core/current.rb +10 -0
- data/lib/bridgetown-core/document.rb +7 -14
- data/lib/bridgetown-core/drops/collection_drop.rb +1 -1
- data/lib/bridgetown-core/drops/page_drop.rb +4 -0
- data/lib/bridgetown-core/drops/relations_drop.rb +23 -0
- data/lib/bridgetown-core/drops/resource_drop.rb +83 -0
- data/lib/bridgetown-core/drops/site_drop.rb +33 -8
- data/lib/bridgetown-core/drops/unified_payload_drop.rb +5 -0
- data/lib/bridgetown-core/entry_filter.rb +12 -25
- data/lib/bridgetown-core/errors.rb +0 -2
- data/lib/bridgetown-core/filters.rb +4 -27
- data/lib/bridgetown-core/filters/from_liquid.rb +23 -0
- data/lib/bridgetown-core/filters/url_filters.rb +12 -0
- data/lib/bridgetown-core/generator.rb +2 -1
- data/lib/bridgetown-core/generators/prototype_generator.rb +37 -19
- data/lib/bridgetown-core/helpers.rb +48 -9
- data/lib/bridgetown-core/layout.rb +28 -13
- data/lib/bridgetown-core/liquid_renderer/file.rb +1 -0
- data/lib/bridgetown-core/liquid_renderer/table.rb +1 -0
- data/lib/bridgetown-core/model/base.rb +138 -0
- data/lib/bridgetown-core/model/builder_origin.rb +40 -0
- data/lib/bridgetown-core/model/origin.rb +38 -0
- data/lib/bridgetown-core/model/repo_origin.rb +126 -0
- data/lib/bridgetown-core/page.rb +11 -2
- data/lib/bridgetown-core/plugin.rb +2 -26
- data/lib/bridgetown-core/plugin_manager.rb +1 -3
- data/lib/bridgetown-core/publisher.rb +7 -1
- data/lib/bridgetown-core/reader.rb +36 -21
- data/lib/bridgetown-core/readers/data_reader.rb +4 -4
- data/lib/bridgetown-core/readers/page_reader.rb +1 -0
- data/lib/bridgetown-core/readers/post_reader.rb +5 -4
- data/lib/bridgetown-core/regenerator.rb +8 -1
- data/lib/bridgetown-core/related_posts.rb +5 -5
- data/lib/bridgetown-core/renderer.rb +6 -13
- data/lib/bridgetown-core/resource/base.rb +317 -0
- data/lib/bridgetown-core/resource/destination.rb +49 -0
- data/lib/bridgetown-core/resource/permalink_processor.rb +179 -0
- data/lib/bridgetown-core/resource/relations.rb +132 -0
- data/lib/bridgetown-core/resource/taxonomy_term.rb +34 -0
- data/lib/bridgetown-core/resource/taxonomy_type.rb +56 -0
- data/lib/bridgetown-core/resource/transformer.rb +175 -0
- data/lib/bridgetown-core/ruby_template_view.rb +12 -4
- data/lib/bridgetown-core/site.rb +9 -1
- data/lib/bridgetown-core/static_file.rb +33 -10
- data/lib/bridgetown-core/tags/include.rb +1 -1
- data/lib/bridgetown-core/tags/post_url.rb +2 -2
- data/lib/bridgetown-core/url.rb +1 -0
- data/lib/bridgetown-core/utils.rb +49 -43
- data/lib/bridgetown-core/utils/require_gems.rb +60 -0
- data/lib/bridgetown-core/utils/ruby_exec.rb +6 -9
- data/lib/bridgetown-core/utils/ruby_front_matter.rb +39 -0
- data/lib/bridgetown-core/version.rb +2 -2
- data/lib/bridgetown-core/watcher.rb +1 -1
- data/lib/site_template/README.md +70 -0
- data/lib/site_template/package.json.erb +2 -2
- data/lib/site_template/src/_posts/0000-00-00-welcome-to-bridgetown.md.erb +1 -1
- data/lib/site_template/webpack.config.js.erb +26 -6
- metadata +56 -44
- data/lib/bridgetown-core/external.rb +0 -58
- data/lib/bridgetown-core/page_without_a_file.rb +0 -17
- data/lib/bridgetown-core/path_manager.rb +0 -31
- data/lib/bridgetown-core/readers/collection_reader.rb +0 -23
- data/lib/bridgetown-core/readers/static_file_reader.rb +0 -25
- data/lib/bridgetown-core/utils/exec.rb +0 -26
- data/lib/bridgetown-core/utils/internet.rb +0 -37
- data/lib/bridgetown-core/utils/platforms.rb +0 -80
- data/lib/bridgetown-core/utils/thread_event.rb +0 -31
- data/lib/bridgetown-core/utils/win_tz.rb +0 -75
@@ -1,17 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
# A Bridgetown::Page subclass to handle processing files without reading it to
|
5
|
-
# determine the page-data and page-content based on Front Matter delimiters.
|
6
|
-
#
|
7
|
-
# The class instance is basically just a bare-bones entity with just
|
8
|
-
# attributes "dir", "name", "path", "url" defined on it.
|
9
|
-
class PageWithoutAFile < Page
|
10
|
-
Bridgetown.logger.warn "NOTICE: the PageWithoutAFile class is deprecated and" \
|
11
|
-
" will be removed in Bridgetown 0.20."
|
12
|
-
|
13
|
-
def read_yaml(*)
|
14
|
-
@data ||= {}
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
# A singleton class that caches frozen instances of path strings returned from its methods.
|
5
|
-
#
|
6
|
-
# NOTE:
|
7
|
-
# This class exists because `File.join` allocates an Array and returns a new String on every
|
8
|
-
# call using **the same arguments**. Caching the result means reduced memory usage.
|
9
|
-
# However, the caches are never flushed so that they can be used even when a site is
|
10
|
-
# regenerating. The results are frozen to deter mutation of the cached string.
|
11
|
-
#
|
12
|
-
# Therefore, employ this class only for situations where caching the result is necessary
|
13
|
-
# for performance reasons.
|
14
|
-
#
|
15
|
-
class PathManager
|
16
|
-
# This class cannot be initialized from outside
|
17
|
-
private_class_method :new
|
18
|
-
|
19
|
-
# Wraps `File.join` to cache the frozen result.
|
20
|
-
# Reassigns `nil`, empty strings and empty arrays to a frozen empty string beforehand.
|
21
|
-
#
|
22
|
-
# Returns a frozen string.
|
23
|
-
def self.join(base, item)
|
24
|
-
base = "" if base.nil? || base.empty?
|
25
|
-
item = "" if item.nil? || item.empty?
|
26
|
-
@join ||= {}
|
27
|
-
@join[base] ||= {}
|
28
|
-
@join[base][item] ||= File.join(base, item).freeze
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
class CollectionReader
|
5
|
-
SPECIAL_COLLECTIONS = %w(posts data).freeze
|
6
|
-
|
7
|
-
attr_reader :site, :content
|
8
|
-
|
9
|
-
def initialize(site)
|
10
|
-
@site = site
|
11
|
-
@content = {}
|
12
|
-
end
|
13
|
-
|
14
|
-
# Read in all collections specified in the configuration
|
15
|
-
#
|
16
|
-
# Returns nothing.
|
17
|
-
def read
|
18
|
-
site.collections.each_value do |collection|
|
19
|
-
collection.read unless SPECIAL_COLLECTIONS.include?(collection.label)
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
class StaticFileReader
|
5
|
-
attr_reader :site, :dir, :unfiltered_content
|
6
|
-
|
7
|
-
def initialize(site, dir)
|
8
|
-
@site = site
|
9
|
-
@dir = dir
|
10
|
-
@unfiltered_content = []
|
11
|
-
end
|
12
|
-
|
13
|
-
# Create a new StaticFile object for every entry in a given list of basenames.
|
14
|
-
#
|
15
|
-
# files - an array of file basenames.
|
16
|
-
#
|
17
|
-
# Returns an array of static files.
|
18
|
-
def read(files)
|
19
|
-
files.each do |file|
|
20
|
-
@unfiltered_content << StaticFile.new(@site, @site.source, @dir, file)
|
21
|
-
end
|
22
|
-
@unfiltered_content
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,26 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "open3"
|
4
|
-
|
5
|
-
module Bridgetown
|
6
|
-
module Utils
|
7
|
-
module Exec
|
8
|
-
extend self
|
9
|
-
|
10
|
-
# Runs a program in a sub-shell.
|
11
|
-
#
|
12
|
-
# *args - a list of strings containing the program name and arguments
|
13
|
-
#
|
14
|
-
# Returns a Process::Status and a String of output in an array in
|
15
|
-
# that order.
|
16
|
-
def run(*args)
|
17
|
-
stdin, stdout, stderr, process = Open3.popen3(*args)
|
18
|
-
out = stdout.read.strip
|
19
|
-
err = stderr.read.strip
|
20
|
-
|
21
|
-
[stdin, stdout, stderr].each(&:close)
|
22
|
-
[process.value, out + err]
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
module Utils
|
5
|
-
module Internet
|
6
|
-
# Public: Determine whether the present device has a connection to
|
7
|
-
# the Internet. This allows plugin writers which require the outside
|
8
|
-
# world to have a neat fallback mechanism for offline building.
|
9
|
-
#
|
10
|
-
# Example:
|
11
|
-
# if Internet.connected?
|
12
|
-
# Typhoeus.get("https://pages.github.com/versions.json")
|
13
|
-
# else
|
14
|
-
# Bridgetown.logger.warn "Warning:", "Version check has been disabled."
|
15
|
-
# Bridgetown.logger.warn "", "Connect to the Internet to enable it."
|
16
|
-
# nil
|
17
|
-
# end
|
18
|
-
#
|
19
|
-
# Returns true if a DNS call can successfully be made, or false if not.
|
20
|
-
|
21
|
-
module_function
|
22
|
-
|
23
|
-
def connected?
|
24
|
-
!dns("example.com").nil?
|
25
|
-
end
|
26
|
-
|
27
|
-
def dns(domain)
|
28
|
-
require "resolv"
|
29
|
-
Resolv::DNS.open do |resolver|
|
30
|
-
resolver.getaddress(domain)
|
31
|
-
end
|
32
|
-
rescue Resolv::ResolvError, Resolv::ResolvTimeout
|
33
|
-
nil
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
@@ -1,80 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
module Utils
|
5
|
-
module Platforms
|
6
|
-
extend self
|
7
|
-
|
8
|
-
# TODO: jruby is NOT supported by Bridgetown. This should probably
|
9
|
-
# get removed.
|
10
|
-
{ jruby?: "jruby", mri?: "ruby" }.each do |k, v|
|
11
|
-
define_method k do
|
12
|
-
::RUBY_ENGINE == v
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
# --
|
17
|
-
# Allows you to detect "real" Windows, or what we would consider
|
18
|
-
# "real" Windows. That is, that we can pass the basic test and the
|
19
|
-
# /proc/version returns nothing to us.
|
20
|
-
# --
|
21
|
-
|
22
|
-
def vanilla_windows?
|
23
|
-
RbConfig::CONFIG["host_os"] =~ %r!mswin|mingw|cygwin!i && \
|
24
|
-
!proc_version
|
25
|
-
end
|
26
|
-
|
27
|
-
# --
|
28
|
-
# XXX: Remove in 4.0
|
29
|
-
# --
|
30
|
-
|
31
|
-
alias_method :really_windows?, \
|
32
|
-
:vanilla_windows?
|
33
|
-
|
34
|
-
#
|
35
|
-
|
36
|
-
def bash_on_windows?
|
37
|
-
RbConfig::CONFIG["host_os"] =~ %r!linux! && \
|
38
|
-
proc_version =~ %r!microsoft!i
|
39
|
-
end
|
40
|
-
|
41
|
-
#
|
42
|
-
|
43
|
-
def windows?
|
44
|
-
vanilla_windows? || bash_on_windows?
|
45
|
-
end
|
46
|
-
|
47
|
-
#
|
48
|
-
|
49
|
-
def linux?
|
50
|
-
RbConfig::CONFIG["host_os"] =~ %r!linux! && \
|
51
|
-
proc_version !~ %r!microsoft!i
|
52
|
-
end
|
53
|
-
|
54
|
-
# Provides windows?, linux?, osx?, unix? so that we can detect
|
55
|
-
# platforms. This is mostly useful for `bridgetown doctor` and for testing
|
56
|
-
# where we kick off certain tests based on the platform.
|
57
|
-
|
58
|
-
{ osx?: %r!darwin|mac os!, unix?: %r!solaris|bsd! }.each do |k, v|
|
59
|
-
define_method k do
|
60
|
-
!!(
|
61
|
-
RbConfig::CONFIG["host_os"] =~ v
|
62
|
-
)
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
#
|
67
|
-
|
68
|
-
private
|
69
|
-
|
70
|
-
def proc_version
|
71
|
-
@proc_version ||=
|
72
|
-
begin
|
73
|
-
File.read("/proc/version")
|
74
|
-
rescue Errno::ENOENT, Errno::EACCES
|
75
|
-
nil
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
80
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
module Utils
|
5
|
-
# Based on the pattern and code from
|
6
|
-
# https://emptysqua.re/blog/an-event-synchronization-primitive-for-ruby/
|
7
|
-
class ThreadEvent
|
8
|
-
attr_reader :flag
|
9
|
-
|
10
|
-
def initialize
|
11
|
-
@lock = Mutex.new
|
12
|
-
@cond = ConditionVariable.new
|
13
|
-
@flag = false
|
14
|
-
end
|
15
|
-
|
16
|
-
def set
|
17
|
-
@lock.synchronize do
|
18
|
-
yield if block_given?
|
19
|
-
@flag = true
|
20
|
-
@cond.broadcast
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
def wait
|
25
|
-
@lock.synchronize do
|
26
|
-
@cond.wait(@lock) unless @flag
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,75 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Bridgetown
|
4
|
-
module Utils
|
5
|
-
module WinTZ
|
6
|
-
extend self
|
7
|
-
|
8
|
-
# Public: Calculate the Timezone for Windows when the config file has a defined
|
9
|
-
# 'timezone' key.
|
10
|
-
#
|
11
|
-
# timezone - the IANA Time Zone specified in "_config.yml"
|
12
|
-
#
|
13
|
-
# Returns a string that ultimately re-defines ENV["TZ"] in Windows
|
14
|
-
def calculate(timezone)
|
15
|
-
External.require_with_graceful_fail("tzinfo") unless defined?(TZInfo)
|
16
|
-
tz = TZInfo::Timezone.get(timezone)
|
17
|
-
difference = Time.now.to_i - tz.now.to_i
|
18
|
-
#
|
19
|
-
# POSIX style definition reverses the offset sign.
|
20
|
-
# e.g. Eastern Standard Time (EST) that is 5Hrs. to the 'west' of Prime Meridian
|
21
|
-
# is denoted as:
|
22
|
-
# EST+5 (or) EST+05:00
|
23
|
-
# Reference: http://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html
|
24
|
-
sign = difference.negative? ? "-" : "+"
|
25
|
-
offset = sign == "-" ? "+" : "-" unless difference.zero?
|
26
|
-
#
|
27
|
-
# convert the difference (in seconds) to hours, as a rational number, and perform
|
28
|
-
# a modulo operation on it.
|
29
|
-
modulo = modulo_of(rational_hour(difference))
|
30
|
-
#
|
31
|
-
# Format the hour as a two-digit number.
|
32
|
-
# Establish the minutes based on modulo expression.
|
33
|
-
hh = format("%<hour>02d", hour: absolute_hour(difference).ceil)
|
34
|
-
mm = modulo.zero? ? "00" : "30"
|
35
|
-
|
36
|
-
Bridgetown.logger.debug "Timezone:", "#{timezone} #{offset}#{hh}:#{mm}"
|
37
|
-
#
|
38
|
-
# Note: The 3-letter-word below doesn't have a particular significance.
|
39
|
-
"WTZ#{sign}#{hh}:#{mm}"
|
40
|
-
end
|
41
|
-
|
42
|
-
private
|
43
|
-
|
44
|
-
# Private: Convert given seconds to an hour as a rational number.
|
45
|
-
#
|
46
|
-
# seconds - supplied as an integer, it is converted to a rational number.
|
47
|
-
# 3600 - no. of seconds in an hour.
|
48
|
-
#
|
49
|
-
# Returns a rational number.
|
50
|
-
def rational_hour(seconds)
|
51
|
-
seconds.to_r / 3600
|
52
|
-
end
|
53
|
-
|
54
|
-
# Private: Convert given seconds to an hour as an absolute number.
|
55
|
-
#
|
56
|
-
# seconds - supplied as an integer, it is converted to its absolute.
|
57
|
-
# 3600 - no. of seconds in an hour.
|
58
|
-
#
|
59
|
-
# Returns an integer.
|
60
|
-
def absolute_hour(seconds)
|
61
|
-
seconds.abs / 3600
|
62
|
-
end
|
63
|
-
|
64
|
-
# Private: Perform a modulo operation on a given fraction.
|
65
|
-
#
|
66
|
-
# fraction - supplied as a rational number, its numerator is divided
|
67
|
-
# by its denominator and the remainder returned.
|
68
|
-
#
|
69
|
-
# Returns an integer.
|
70
|
-
def modulo_of(fraction)
|
71
|
-
fraction.numerator % fraction.denominator
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|