jekyll_img 0.1.2 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +60 -3
- data/CHANGELOG.md +7 -0
- data/README.md +11 -0
- data/jekyll_img.gemspec +3 -6
- data/lib/img_builder.rb +1 -0
- data/lib/img_props.rb +12 -7
- data/lib/jekyll_img/version.rb +1 -1
- data/lib/jekyll_img.rb +36 -19
- data/spec/img_builder_spec.rb +4 -4
- data/spec/img_props_spec.rb +20 -21
- data/spec/jekyll_img_spec.rb +3 -5
- metadata +7 -37
- data/spec/status_persistence.txt +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f9a0ee86751118f5ed309e486751eede3ce4d5c3dad14ecbe7d695aefcc54ee
|
4
|
+
data.tar.gz: a42e9552fe07aadb4f24882280505f2b55fbeb5b4789e5cb27e7d2f8e9ec7e75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad481773b5aabb69f9e8a24c1c3477fa112298f10c9fd21f1f28c008eedb694991107532787c625a0ad736bea7baac2f23220494ad6b2e4b5b56471074bb88fe
|
7
|
+
data.tar.gz: efef2dd2953194241346f6b354f2429241b0c9d116b5251d97a79d9654d9323acfbb101d1a33ac8481635a365c269224f0bce242aa2e1062661e917a2ba5f0b7
|
data/.rubocop.yml
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
require:
|
2
|
+
# - rubocop-jekyll
|
3
|
+
- rubocop-md
|
4
|
+
- rubocop-performance
|
5
|
+
- rubocop-rake
|
6
|
+
- rubocop-rspec
|
7
|
+
|
8
|
+
# inherit_gem:
|
9
|
+
# rubocop-jekyll: .rubocop.yml
|
10
|
+
|
1
11
|
AllCops:
|
2
12
|
Exclude:
|
3
13
|
- vendor/**/*
|
@@ -7,17 +17,32 @@ AllCops:
|
|
7
17
|
NewCops: enable
|
8
18
|
TargetRubyVersion: 2.6
|
9
19
|
|
10
|
-
|
20
|
+
Gemspec/DeprecatedAttributeAssignment:
|
21
|
+
Enabled: false
|
22
|
+
|
23
|
+
Gemspec/RequireMFA:
|
11
24
|
Enabled: false
|
12
25
|
|
26
|
+
Layout/InitialIndentation:
|
27
|
+
Exclude:
|
28
|
+
- README.md
|
29
|
+
|
30
|
+
Layout/HashAlignment:
|
31
|
+
EnforcedColonStyle: table
|
32
|
+
EnforcedHashRocketStyle: table
|
33
|
+
|
13
34
|
Layout/LineLength:
|
14
35
|
Max: 150
|
15
36
|
|
16
37
|
Layout/MultilineMethodCallIndentation:
|
17
38
|
Enabled: false
|
18
39
|
|
40
|
+
Lint/RedundantCopDisableDirective:
|
41
|
+
Exclude:
|
42
|
+
- jekyll_img.gemspec
|
43
|
+
|
19
44
|
Metrics/AbcSize:
|
20
|
-
Max:
|
45
|
+
Max: 45
|
21
46
|
|
22
47
|
Metrics/BlockLength:
|
23
48
|
Max: 30
|
@@ -34,8 +59,40 @@ Metrics/MethodLength:
|
|
34
59
|
Metrics/PerceivedComplexity:
|
35
60
|
Max: 10
|
36
61
|
|
62
|
+
Naming/FileName:
|
63
|
+
Exclude:
|
64
|
+
- Rakefile
|
65
|
+
|
66
|
+
Naming/MemoizedInstanceVariableName:
|
67
|
+
Enabled: false
|
68
|
+
|
69
|
+
RSpec/ExampleLength:
|
70
|
+
Enabled: false
|
71
|
+
|
72
|
+
RSpec/MultipleExpectations:
|
73
|
+
Enabled: false
|
74
|
+
|
75
|
+
Style/CommandLiteral:
|
76
|
+
Enabled: false
|
77
|
+
|
78
|
+
Style/CommentedKeyword:
|
79
|
+
Enabled: false
|
80
|
+
|
81
|
+
Style/Documentation:
|
82
|
+
Enabled: false
|
83
|
+
|
37
84
|
Style/FrozenStringLiteralComment:
|
38
85
|
Enabled: false
|
39
86
|
|
40
|
-
Style/
|
87
|
+
Style/StringConcatenation:
|
88
|
+
Exclude:
|
89
|
+
- spec/**/*
|
90
|
+
|
91
|
+
Style/StringLiterals:
|
41
92
|
Enabled: false
|
93
|
+
|
94
|
+
Style/StringLiteralsInInterpolation:
|
95
|
+
Enabled: false
|
96
|
+
|
97
|
+
Style/TrailingCommaInHashLiteral:
|
98
|
+
EnforcedStyleForMultiline: comma
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## 0.1.4 / 2023-04-02
|
2
|
+
* Added [`attribution` support](https://github.com/mslinn/jekyll_plugin_support#subclass-attribution).
|
3
|
+
* Fixed `style=' false'` that appeared when the `style` and `wrapper_style` attributes were not provided.
|
4
|
+
|
5
|
+
## 0.1.3 / 2023-02-22
|
6
|
+
* Added `img/continue_on_error` configuration parameter.
|
7
|
+
|
1
8
|
## 0.1.2 / 2023-02-14
|
2
9
|
* Fixed `img_props.rb:91:in `size_unit_specified?': undefined method `end_with?' for false:FalseClass (NoMethodError)`
|
3
10
|
|
data/README.md
CHANGED
@@ -19,6 +19,7 @@ $ demo/_bin/debug -r
|
|
19
19
|
|
20
20
|
`Options` are:
|
21
21
|
|
22
|
+
- `attribution` See [`jekyll_plugin_support`](https://github.com/mslinn/jekyll_plugin_support#subclass-attribution).
|
22
23
|
- `align="left|inline|right|center"` Default value is `inline`
|
23
24
|
- `alt="Alt text"` Default value is the `caption` text, if provided
|
24
25
|
- `caption="A caption"` No default value
|
@@ -44,6 +45,16 @@ $ demo/_bin/debug -r
|
|
44
45
|
CSS classes referenced by the `jekyll_img` plugin are at the bottom of [demo/assets/css/style.css](demo/assets/css/style.css). CSS marker classes are included, so CSS selectors can be used for additional styling.
|
45
46
|
|
46
47
|
|
48
|
+
## Configuration
|
49
|
+
By default, any errors cause Jekyll to abort.
|
50
|
+
You can allow Jekyll to continue by setting the following in `_config.yml`:
|
51
|
+
|
52
|
+
```yaml
|
53
|
+
img:
|
54
|
+
continue_on_error: true
|
55
|
+
```
|
56
|
+
|
57
|
+
|
47
58
|
## Design
|
48
59
|
The most significant design issue was the decision that image size and formatting should not change
|
49
60
|
whether it had a caption.
|
data/jekyll_img.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require_relative 'lib/jekyll_img/version'
|
2
2
|
|
3
|
-
Gem::Specification.new do |spec|
|
3
|
+
Gem::Specification.new do |spec|
|
4
4
|
github = 'https://github.com/mslinn/jekyll_img'
|
5
5
|
|
6
6
|
spec.bindir = 'exe'
|
@@ -24,13 +24,10 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
24
24
|
END_MESSAGE
|
25
25
|
spec.require_paths = ['lib']
|
26
26
|
spec.required_ruby_version = '>= 2.6.0'
|
27
|
-
spec.summary = 'Provides a Jekyll
|
27
|
+
spec.summary = 'Provides a Jekyll tag that generates images.'
|
28
28
|
spec.test_files = spec.files.grep %r{^(test|spec|features)/}
|
29
29
|
spec.version = JekyllImgVersion::VERSION
|
30
30
|
|
31
31
|
spec.add_dependency 'jekyll', '>= 3.5.0'
|
32
|
-
spec.add_dependency 'jekyll_plugin_support', '
|
33
|
-
|
34
|
-
spec.add_development_dependency 'rspec'
|
35
|
-
spec.add_development_dependency 'rspec-match_ignoring_whitespace'
|
32
|
+
spec.add_dependency 'jekyll_plugin_support', '~> 0.6.0'
|
36
33
|
end
|
data/lib/img_builder.rb
CHANGED
data/lib/img_props.rb
CHANGED
@@ -1,10 +1,13 @@
|
|
1
|
+
class ImgError < StandardError; end
|
2
|
+
|
1
3
|
# Properties from user
|
2
4
|
# All methods are idempotent.
|
3
5
|
# attr_ methods can be called after compute_dependant_properties
|
4
6
|
# All methods except compute_dependant_properties can be called in any order
|
5
7
|
class ImgProperties
|
6
|
-
attr_accessor :align, :alt, :attr_wrapper_align_class, :
|
7
|
-
:
|
8
|
+
attr_accessor :align, :alt, :attr_wrapper_align_class, :attribute, :attribution, :caption, :classes, :continue_on_error,
|
9
|
+
:id, :img_display, :nofollow, :src, :size, :style, :target, :title,
|
10
|
+
:url, :wrapper_class, :wrapper_style
|
8
11
|
|
9
12
|
SIZES = %w[eighthsize fullsize halfsize initial quartersize].freeze
|
10
13
|
|
@@ -28,8 +31,10 @@ class ImgProperties
|
|
28
31
|
def attr_size_class
|
29
32
|
return nil if @size == false || @size.nil? || size_unit_specified?
|
30
33
|
|
31
|
-
|
32
|
-
|
34
|
+
unless SIZES.include?(@size)
|
35
|
+
msg = "'#{@size}' is not a recognized size; must be one of #{SIZES.join(', ')}, or an explicit unit."
|
36
|
+
raise ImgError, msg
|
37
|
+
end
|
33
38
|
@size
|
34
39
|
end
|
35
40
|
|
@@ -60,11 +65,11 @@ class ImgProperties
|
|
60
65
|
@img_display = @caption && @size ? 'imgBlock' : 'imgFlex'
|
61
66
|
|
62
67
|
@alt ||= @caption || @title
|
63
|
-
@title ||= @caption || @alt
|
68
|
+
@title ||= @caption || @alt
|
64
69
|
end
|
65
70
|
|
66
71
|
def src_png
|
67
|
-
|
72
|
+
raise ImgError, "The 'src' parameter was not specified" if @src.to_s.empty?
|
68
73
|
|
69
74
|
@src.gsub('.webp', '.png')
|
70
75
|
end
|
@@ -78,7 +83,7 @@ class ImgProperties
|
|
78
83
|
|
79
84
|
def setup_src
|
80
85
|
@src = @src.to_s.strip
|
81
|
-
|
86
|
+
raise ImgError, "The 'src' parameter was not specified", [] if @src.empty?
|
82
87
|
|
83
88
|
@src = "/assets/images/#{@src}" unless ImgProperties.local_path?(@src) || url?(@src)
|
84
89
|
end
|
data/lib/jekyll_img/version.rb
CHANGED
data/lib/jekyll_img.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'jekyll_plugin_support'
|
2
|
-
require '
|
2
|
+
require 'jekyll_plugin_helper'
|
3
3
|
require_relative 'img_builder'
|
4
4
|
require_relative 'img_props'
|
5
5
|
require_relative 'jekyll_img/version'
|
@@ -14,28 +14,45 @@ end
|
|
14
14
|
module Jekyll
|
15
15
|
# Plugin implementation
|
16
16
|
class Img < JekyllSupport::JekyllTag
|
17
|
-
|
17
|
+
include JekyllImgVersion
|
18
|
+
|
19
|
+
def render_impl # rubocop:disable Metrics/AbcSize
|
20
|
+
@helper.gem_file __FILE__ # This enables plugin attribution
|
21
|
+
|
22
|
+
config = @config['img']
|
23
|
+
@continue_on_error = config['continue_on_error'] == true if config
|
24
|
+
|
18
25
|
props = ImgProperties.new
|
19
|
-
props.
|
20
|
-
props.
|
21
|
-
props.
|
22
|
-
props.
|
23
|
-
props.
|
24
|
-
props.
|
25
|
-
props.
|
26
|
-
props.
|
27
|
-
props.
|
28
|
-
props.
|
29
|
-
props.
|
30
|
-
props.
|
31
|
-
props.
|
32
|
-
props.
|
26
|
+
props.attribute = @helper.attribute
|
27
|
+
props.attribution = @helper.attribution
|
28
|
+
props.align = @helper.parameter_specified?('align') || 'inline'
|
29
|
+
props.alt = @helper.parameter_specified? 'alt'
|
30
|
+
props.caption = @helper.parameter_specified? 'caption'
|
31
|
+
props.classes = @helper.parameter_specified? 'class'
|
32
|
+
props.continue_on_error = @continue_on_error
|
33
|
+
props.id = @helper.parameter_specified? 'id'
|
34
|
+
props.nofollow = @helper.parameter_specified? 'nofollow'
|
35
|
+
props.size = @helper.parameter_specified?('size') || @helper.parameter_specified?('_size')
|
36
|
+
props.src = @helper.parameter_specified? 'src'
|
37
|
+
props.style = @helper.parameter_specified? 'style'
|
38
|
+
props.target = @helper.parameter_specified? 'target'
|
39
|
+
props.title = @helper.parameter_specified? 'title'
|
40
|
+
props.url = @helper.parameter_specified? 'url'
|
41
|
+
props.wrapper_class = @helper.parameter_specified? 'wrapper_class'
|
42
|
+
props.wrapper_style = @helper.parameter_specified? 'wrapper_style'
|
33
43
|
|
34
44
|
@builder = ImgBuilder.new(props)
|
35
45
|
@builder.to_s
|
46
|
+
rescue ImgError => e
|
47
|
+
msg = <<~END_ERR
|
48
|
+
#{e.message} on line #{@line_number} (after front matter) of #{@page['path']}.
|
49
|
+
The offending argument string was: #{@argument_string}
|
50
|
+
END_ERR
|
51
|
+
raise ImgError, msg.red, [] unless @continue_on_error
|
52
|
+
|
53
|
+
@logger.warn msg
|
36
54
|
end
|
55
|
+
|
56
|
+
JekyllPluginHelper.register(self, ImgModule::PLUGIN_NAME)
|
37
57
|
end
|
38
58
|
end
|
39
|
-
|
40
|
-
PluginMetaLogger.instance.info { "Loaded #{ImgModule::PLUGIN_NAME} v0.1.0 plugin." }
|
41
|
-
Liquid::Template.register_tag(ImgModule::PLUGIN_NAME, Jekyll::Img)
|
data/spec/img_builder_spec.rb
CHANGED
@@ -4,11 +4,11 @@ require_relative '../lib/img_props'
|
|
4
4
|
|
5
5
|
# Test ImgProperties
|
6
6
|
class ImgPropertiesTest
|
7
|
-
RSpec.describe ImgBuilder do
|
7
|
+
RSpec.describe ImgBuilder do
|
8
8
|
it 'generates a default img' do
|
9
9
|
props = ImgProperties.new
|
10
10
|
props.src = 'blah.webp'
|
11
|
-
builder =
|
11
|
+
builder = described_class.new(props)
|
12
12
|
picture = <<~END_IMG
|
13
13
|
<div class='imgWrapper imgFlex' style=' '>
|
14
14
|
<picture class='imgPicture'>
|
@@ -22,7 +22,7 @@ class ImgPropertiesTest
|
|
22
22
|
</div>
|
23
23
|
END_IMG
|
24
24
|
|
25
|
-
expect(builder.send(:generate_figure_caption)).to
|
25
|
+
expect(builder.send(:generate_figure_caption)).to be_nil
|
26
26
|
expect(builder.send(:generate_wrapper)).to match_ignoring_whitespace(picture)
|
27
27
|
end
|
28
28
|
|
@@ -31,7 +31,7 @@ class ImgPropertiesTest
|
|
31
31
|
props.caption = 'This is a caption'
|
32
32
|
props.size = '123px'
|
33
33
|
props.src = 'blah.webp'
|
34
|
-
builder =
|
34
|
+
builder = described_class.new(props)
|
35
35
|
|
36
36
|
caption = <<~END_CAPTION
|
37
37
|
<figcaption class='imgFigCaption '>
|
data/spec/img_props_spec.rb
CHANGED
@@ -1,39 +1,38 @@
|
|
1
1
|
require_relative '../lib/img_props'
|
2
2
|
|
3
|
-
# Test ImgProperties
|
4
3
|
class ImgProperitesTest
|
5
|
-
RSpec.describe ImgProperties do
|
4
|
+
RSpec.describe ImgProperties do
|
6
5
|
it 'detects relative paths' do
|
7
|
-
expect(
|
8
|
-
expect(
|
9
|
-
expect(
|
6
|
+
expect(described_class.local_path?('abcdef')).to be false
|
7
|
+
expect(described_class.local_path?('./abc')).to be true
|
8
|
+
expect(described_class.local_path?('/abc')).to be true
|
10
9
|
end
|
11
10
|
|
12
11
|
it 'has other class methods' do
|
13
|
-
props =
|
12
|
+
props = described_class.new
|
14
13
|
expect(props.send(:size_unit_specified?)).to be false
|
15
14
|
expect(props.send(:url?, 'blah')).to be false
|
16
15
|
expect(props.send(:url?, 'http://blah')).to be true
|
17
16
|
end
|
18
17
|
|
19
18
|
it 'does not generate attributes for most empty properties' do
|
20
|
-
props =
|
21
|
-
expect(props.attr_alt).to
|
19
|
+
props = described_class.new
|
20
|
+
expect(props.attr_alt).to be_nil
|
22
21
|
expect(props.attr_img_classes).to eq('rounded shadow')
|
23
|
-
expect(props.attr_id).to
|
24
|
-
expect(props.attr_nofollow).to
|
25
|
-
expect(props.attr_size_class).to
|
22
|
+
expect(props.attr_id).to be_nil
|
23
|
+
expect(props.attr_nofollow).to be_nil
|
24
|
+
expect(props.attr_size_class).to be_nil
|
26
25
|
expect(props.attr_style_img).to eq("style='width: 100%; '")
|
27
26
|
expect(props.attr_target).to eq(" target='_blank'")
|
28
|
-
expect(props.attr_title).to
|
29
|
-
expect(props.attr_width_style).to
|
27
|
+
expect(props.attr_title).to be_nil
|
28
|
+
expect(props.attr_width_style).to be_nil
|
30
29
|
|
31
30
|
props.compute_dependant_properties
|
32
31
|
expect(props.attr_wrapper_align_class).to eq('inline')
|
33
32
|
end
|
34
33
|
|
35
34
|
it 'raises exception if src was not specified' do
|
36
|
-
props =
|
35
|
+
props = described_class.new
|
37
36
|
expect { props.src_png }.to raise_error(SystemExit)
|
38
37
|
expect { props.send(:setup_src) }.to raise_error(SystemExit)
|
39
38
|
|
@@ -50,8 +49,8 @@ class ImgProperitesTest
|
|
50
49
|
expect(props.src).to eq('/absolute/path.webp')
|
51
50
|
end
|
52
51
|
|
53
|
-
it 'generates proper simple attributes' do
|
54
|
-
props =
|
52
|
+
it 'generates proper simple attributes' do
|
53
|
+
props = described_class.new
|
55
54
|
|
56
55
|
props.alt = 'blah'
|
57
56
|
expect(props.attr_alt).to eq("alt='blah'")
|
@@ -69,18 +68,18 @@ class ImgProperitesTest
|
|
69
68
|
expect(props.attr_size_class).to eq('initial')
|
70
69
|
|
71
70
|
props.size = '100px'
|
72
|
-
expect(props.attr_size_class).to
|
71
|
+
expect(props.attr_size_class).to be_nil
|
73
72
|
expect(props.attr_style_img).to eq("style='max-width: 100px;'")
|
74
73
|
expect(props.attr_width_style).to eq('width: 100px;')
|
75
74
|
|
76
75
|
props.size = '10%'
|
77
|
-
expect(props.attr_size_class).to
|
76
|
+
expect(props.attr_size_class).to be_nil
|
78
77
|
expect(props.attr_style_img).to eq("style='max-width: 10%;'")
|
79
78
|
expect(props.attr_width_style).to eq('width: 10%;')
|
80
79
|
|
81
80
|
props.size = 'fullsize'
|
82
81
|
expect(props.attr_size_class).to eq('fullsize')
|
83
|
-
expect(props.attr_width_style).to
|
82
|
+
expect(props.attr_width_style).to be_nil
|
84
83
|
|
85
84
|
props.style = 'width: 30rem;'
|
86
85
|
expect(props.attr_style_img).to eq("style='width: 30rem;'")
|
@@ -93,12 +92,12 @@ class ImgProperitesTest
|
|
93
92
|
|
94
93
|
props.size = '100px'
|
95
94
|
props.caption = 'A caption'
|
96
|
-
expect(props.attr_size_class).to
|
95
|
+
expect(props.attr_size_class).to be_nil
|
97
96
|
expect(props.attr_width_style).to eq('width: 100px;')
|
98
97
|
end
|
99
98
|
|
100
99
|
it 'generates proper alignment attributes' do
|
101
|
-
props =
|
100
|
+
props = described_class.new
|
102
101
|
|
103
102
|
props.align = 'inline'
|
104
103
|
props.compute_dependant_properties
|
data/spec/jekyll_img_spec.rb
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
1
|
require 'jekyll'
|
4
2
|
require 'jekyll_plugin_logger'
|
5
3
|
require 'rspec/match_ignoring_whitespace'
|
@@ -32,7 +30,7 @@ class TestParseContext < Liquid::ParseContext
|
|
32
30
|
@line_number = 123
|
33
31
|
|
34
32
|
@registers = Registers.new(
|
35
|
-
{
|
33
|
+
{},
|
36
34
|
SiteMock.new
|
37
35
|
)
|
38
36
|
end
|
@@ -57,13 +55,13 @@ class MyTest
|
|
57
55
|
|
58
56
|
it 'has no cite or url' do
|
59
57
|
helper.reinitialize('src="./blah.webp"')
|
60
|
-
|
58
|
+
img = described_class.send(
|
61
59
|
:new,
|
62
60
|
'img',
|
63
61
|
helper.markup.dup,
|
64
62
|
parse_context
|
65
63
|
)
|
66
|
-
result =
|
64
|
+
result = img.send(:render_impl, helper.markup)
|
67
65
|
expect(result).to match_ignoring_whitespace <<-END_RESULT
|
68
66
|
<img src="./blah.webp">
|
69
67
|
END_RESULT
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_img
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Slinn
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -28,44 +28,16 @@ dependencies:
|
|
28
28
|
name: jekyll_plugin_support
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.6.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 0.3.1
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rspec
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rspec-match_ignoring_whitespace
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
38
|
+
- - "~>"
|
67
39
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
40
|
+
version: 0.6.0
|
69
41
|
description:
|
70
42
|
email:
|
71
43
|
- mslinn@mslinn.com
|
@@ -87,7 +59,6 @@ files:
|
|
87
59
|
- spec/img_props_spec.rb
|
88
60
|
- spec/jekyll_img_spec.rb
|
89
61
|
- spec/spec_helper.rb
|
90
|
-
- spec/status_persistence.txt
|
91
62
|
homepage: https://mslinn.com/jekyll/3000-jekyll-plugins.html#jekyll_img
|
92
63
|
licenses:
|
93
64
|
- MIT
|
@@ -118,11 +89,10 @@ requirements: []
|
|
118
89
|
rubygems_version: 3.3.3
|
119
90
|
signing_key:
|
120
91
|
specification_version: 4
|
121
|
-
summary: Provides a Jekyll
|
92
|
+
summary: Provides a Jekyll tag that generates images.
|
122
93
|
test_files:
|
123
94
|
- spec/img_builder_spec.rb
|
124
95
|
- spec/img_props_spec.rb
|
125
96
|
- spec/jekyll_img_spec.rb
|
126
97
|
- spec/spec_helper.rb
|
127
|
-
- spec/status_persistence.txt
|
128
98
|
...
|
data/spec/status_persistence.txt
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
example_id | status | run_time |
|
2
|
-
------------------------------- | ------ | --------------- |
|
3
|
-
./spec/img_builder_spec.rb[1:1] | passed | 0.00073 seconds |
|
4
|
-
./spec/img_props_spec.rb[1:1] | passed | 0.0001 seconds |
|
5
|
-
./spec/img_props_spec.rb[1:2] | passed | 0.00008 seconds |
|
6
|
-
./spec/img_props_spec.rb[1:3] | failed | 0.00051 seconds |
|
7
|
-
./spec/img_props_spec.rb[1:4] | passed | 0.0011 seconds |
|
8
|
-
./spec/img_props_spec.rb[1:5] | passed | 0.00019 seconds |
|
9
|
-
./spec/img_props_spec.rb[1:6] | failed | 0.00008 seconds |
|
10
|
-
./spec/jekyll_img_spec.rb[1:1] | failed | 0.00037 seconds |
|