jekyll 4.3.2 → 4.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 347e7eea42afb6073288ca30a52df201c93ba8cb11883e07f7d02790516f4a0c
4
- data.tar.gz: e319f9f8183ac7712a5c215f0fbf083c7a84c06f8c716b3170ae17f6e96c8fb8
3
+ metadata.gz: 36a2e136e304048a4cd7cc196e2aed55eb12f143e9132181462ded47f80973b1
4
+ data.tar.gz: a3f4d3438d8ba9179740dacc2eb89ecc7d0770927a1628fc2ac410010bea0c7b
5
5
  SHA512:
6
- metadata.gz: 6b146b2b681d7e3735faaa93f87ea00ba7500a1789820238d5883ff17f353207c987d70a2fbbd4bbe1f56ff784c7f9d3198b4232b48f2f5920a6664e45511cd0
7
- data.tar.gz: 55ad809278c2624d4b13316ec7436022e71fcf543cf84c1bd4d04fc3660efc948951ed3f13b487bddb8041be80e885aa6fd24ad1165795b08752f5210c35b152
6
+ metadata.gz: c37c4db936253fd9307605f04af32d0a869839699b3056bae5dab4f1941ee7016e8d520f77f20a5d45026424fee68ff070e3029b81b4b0aafc0835cf4fe92528
7
+ data.tar.gz: 0437ed64aa93cd10d3c751897bdf52b5de2d1d50bd52282588cee37a86d9a56d13fdad0ee32bfabb55336dcb5b2796c13857d9870700d071043869eb188e5711
data/README.markdown CHANGED
@@ -1,8 +1,7 @@
1
1
  # [Jekyll](https://jekyllrb.com/)
2
2
 
3
3
  [![Gem Version](https://img.shields.io/gem/v/jekyll.svg)][ruby-gems]
4
- [![Linux Build Status](https://github.com/jekyll/jekyll/workflows/Continuous%20Integration/badge.svg)][ci-workflow]
5
- [![Windows Build status](https://img.shields.io/appveyor/ci/jekyll/jekyll/master.svg?label=Windows%20build)][appveyor]
4
+ [![Build Status](https://github.com/jekyll/jekyll/workflows/Continuous%20Integration/badge.svg)][ci-workflow]
6
5
  [![Backers on Open Collective](https://opencollective.com/jekyll/backers/badge.svg)](#backers)
7
6
  [![Sponsors on Open Collective](https://opencollective.com/jekyll/sponsors/badge.svg)](#sponsors)
8
7
 
@@ -88,7 +88,7 @@ module Jekyll
88
88
  Jekyll.logger.error <<~STR
89
89
  We have detected that there might be trouble using fsevent on your
90
90
  operating system, you can read https://github.com/thibaudgg/rb-fsevent/wiki/no-fsevents-fired-(OSX-bug)
91
- for possible work arounds or you can work around it immediately
91
+ for possible workarounds or you can work around it immediately
92
92
  with `--force-polling`.
93
93
  STR
94
94
 
@@ -97,7 +97,7 @@ module Jekyll
97
97
  end
98
98
 
99
99
  # Performance-booster for watching directories on Windows
100
- gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
100
+ gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
101
101
 
102
102
  # Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
103
103
  # do not have a Java counterpart.
@@ -3,9 +3,12 @@
3
3
  module Jekyll
4
4
  module Drops
5
5
  class ThemeDrop < Drop
6
- delegate_methods :root
7
6
  delegate_method_as :runtime_dependencies, :dependencies
8
7
 
8
+ def root
9
+ @root ||= ENV["JEKYLL_ENV"] == "development" ? @obj.root : ""
10
+ end
11
+
9
12
  def authors
10
13
  @authors ||= gemspec.authors.join(", ")
11
14
  end
@@ -3,13 +3,10 @@
3
3
  module Jekyll
4
4
  class Stevenson < ::Logger
5
5
  def initialize
6
- @progname = nil
7
- @level = DEBUG
8
- @default_formatter = Formatter.new
9
- @logdev = $stdout
10
- @formatter = proc do |_, _, _, msg|
6
+ formatter = proc do |_, _, _, msg|
11
7
  msg.to_s
12
8
  end
9
+ super($stdout, :formatter => formatter)
13
10
  end
14
11
 
15
12
  def add(severity, message = nil, progname = nil)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jekyll
4
- VERSION = "4.3.2"
4
+ VERSION = "4.3.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.2
4
+ version: 4.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2023-01-20 00:00:00.000000000 Z
13
+ date: 2024-09-16 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: addressable