jekyll_asset_pipeline 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +6 -0
- data/lib/jekyll_asset_pipeline.rb +2 -2
- data/lib/jekyll_asset_pipeline/pipeline.rb +6 -6
- data/lib/jekyll_asset_pipeline/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b726f7a64a403c4829e7afe69470938ab04ad8bb1fa87cbc72dc6f7a0f5871cb
|
4
|
+
data.tar.gz: 6fb6c82c5fa9b50f3b834e7f303b140ef9758d17ea1aa9182aa0bdb36856dbc0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2b0347febf55d91ec28060603e8b8056f86eda6f89df1a58574bb5ade32046ac8ee00b44f0c9a71c4b08a2b779ebd4dd2899448d19dbd427f9b09e4e90e706f
|
7
|
+
data.tar.gz: 05e7d25c1b1697570416e929c898e44f8ecec05856f8305d98ecc2baafb895c2f840c8e7883de0940e53c533eafefe9bc8dcf7f4ce793f169aba892f12eec7e6
|
data/CHANGELOG.md
CHANGED
@@ -19,9 +19,9 @@ require 'jekyll_asset_pipeline/extensions/jekyll/site'
|
|
19
19
|
require 'jekyll_asset_pipeline/extensions/liquid/liquid_block_extensions'
|
20
20
|
require 'jekyll_asset_pipeline/extensions/liquid/asset_tag'
|
21
21
|
require 'jekyll_asset_pipeline/extensions/liquid/asset_tags/css_asset_tag'
|
22
|
-
# rubocop:disable LineLength
|
22
|
+
# rubocop:disable Metrics/LineLength
|
23
23
|
require 'jekyll_asset_pipeline/extensions/liquid/asset_tags/javascript_asset_tag'
|
24
|
-
# rubocop:enable LineLength
|
24
|
+
# rubocop:enable Metrics/LineLength
|
25
25
|
|
26
26
|
# Ruby extensions
|
27
27
|
require 'jekyll_asset_pipeline/extensions/ruby/subclass_tracking'
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
module JekyllAssetPipeline
|
4
4
|
# The pipeline itself, the run method is where it all happens
|
5
|
-
# rubocop:disable ClassLength
|
5
|
+
# rubocop:disable Metrics/ClassLength
|
6
6
|
class Pipeline
|
7
|
-
# rubocop:enable ClassLength
|
7
|
+
# rubocop:enable Metrics/ClassLength
|
8
8
|
class << self
|
9
9
|
# Generate hash based on manifest
|
10
10
|
def hash(source, manifest, options = {})
|
@@ -23,9 +23,9 @@ module JekyllAssetPipeline
|
|
23
23
|
# This is called from JekyllAssetPipeline::LiquidBlockExtensions.render
|
24
24
|
# or, to be more precise, from JekyllAssetPipeline::CssAssetTag.render and
|
25
25
|
# JekyllAssetPipeline::JavaScriptAssetTag.render
|
26
|
-
# rubocop:disable ParameterLists
|
26
|
+
# rubocop:disable Metrics/ParameterLists
|
27
27
|
def run(manifest, prefix, source, destination, tag, type, config)
|
28
|
-
# rubocop:enable ParameterLists
|
28
|
+
# rubocop:enable Metrics/ParameterLists
|
29
29
|
# Get hash for pipeline
|
30
30
|
hash = hash(source, manifest, config)
|
31
31
|
|
@@ -84,9 +84,9 @@ module JekyllAssetPipeline
|
|
84
84
|
end
|
85
85
|
|
86
86
|
# Initialize new pipeline
|
87
|
-
# rubocop:disable ParameterLists
|
87
|
+
# rubocop:disable Metrics/ParameterLists
|
88
88
|
def initialize(manifest, prefix, source, destination, type, options = {})
|
89
|
-
# rubocop:enable ParameterLists
|
89
|
+
# rubocop:enable Metrics/ParameterLists
|
90
90
|
@manifest = manifest
|
91
91
|
@prefix = prefix
|
92
92
|
@source = source
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_asset_pipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Hodan
|
@@ -9,22 +9,28 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-10-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '3.5'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '5.0'
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
24
27
|
requirements:
|
25
|
-
- - "
|
28
|
+
- - ">="
|
26
29
|
- !ruby/object:Gem::Version
|
27
30
|
version: '3.5'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.0'
|
28
34
|
- !ruby/object:Gem::Dependency
|
29
35
|
name: liquid
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -118,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
124
|
version: '0'
|
119
125
|
requirements: []
|
120
126
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.
|
127
|
+
rubygems_version: 2.7.8
|
122
128
|
signing_key:
|
123
129
|
specification_version: 4
|
124
130
|
summary: A powerful asset pipeline for Jekyll that bundles, converts, and minifies
|