jekyll_video 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0234b4976b372b06ce8922c29b3207aec8cd759b621580ade9788eef6e9b372f
4
- data.tar.gz: 2c3d4f9989fc85ed8e55948632c391925d3daf4b8c084262bf737e1ea636eb24
3
+ metadata.gz: 06f177eb1343f4c79a6183be639fa87cd6daf10182513a5befa818a893b1c0a2
4
+ data.tar.gz: f5691e99912c74a7282b84de6358d4c220e01c9c73c59e291b466c8309c1945f
5
5
  SHA512:
6
- metadata.gz: 7aae68edc401cdb1694bdda29f1a2b7d9f8a53f05d2a806b1787aa6da4680a31387dbc0c296e2466461de694088c8dede29131841cc8ad057e7ab095a400ea68
7
- data.tar.gz: c83658b58c8dbc369ec9cbe22737c6ab8f783f8425d01aa2e0a9bf200ac4247f3e26a633441db23393f1f2f633b6cd836f5ece7f5d9c7cfb2a1c07bf35da4ba2
6
+ metadata.gz: 1ceebb612dcb371636345f958c210c1c7ce65d75386f52995810de6414bf1c6bb042a74dc18b4992020c2354baf3eeb871cda2e0f8411989ff212bb70dac73a8
7
+ data.tar.gz: 3d8194db301bf53bb8892c3d2a87c461696b09e1df7ab612e8d860f4afc803bb9664f643a156cd23157d2e2014ac14fe2ba6e8702ed40b0b724dd816a4f1e760
data/.rubocop.yml CHANGED
@@ -21,7 +21,7 @@ Gemspec/RequireMFA:
21
21
 
22
22
  Gemspec/RequiredRubyVersion:
23
23
  Enabled: false
24
-
24
+
25
25
  Layout/HashAlignment:
26
26
  EnforcedColonStyle: table
27
27
  EnforcedHashRocketStyle: table
@@ -52,6 +52,7 @@ Metrics/PerceivedComplexity:
52
52
  Naming/FileName:
53
53
  Exclude:
54
54
  - Rakefile
55
+ - "*.md"
55
56
 
56
57
  Style/Documentation:
57
58
  Enabled: false
@@ -62,12 +63,15 @@ Style/FrozenStringLiteralComment:
62
63
  Style/TrailingCommaInHashLiteral:
63
64
  EnforcedStyleForMultiline: comma
64
65
 
65
- RSpec/FilePath:
66
- IgnoreMethods: true
67
- SpecSuffixOnly: true
68
-
69
66
  RSpec/ExampleLength:
70
67
  Max: 30
71
68
 
69
+ RSpec/SpecFilePathFormat:
70
+ Enabled: false
71
+ IgnoreMethods: true
72
+
73
+ RSpec/SpecFilePathSuffix:
74
+ Enabled: false
75
+
72
76
  RSpec/MultipleExpectations:
73
77
  Max: 15
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.2
4
+
5
+ * Compatible with `jekyll_plugin_support` v1.0.0
6
+
7
+
3
8
  ## 0.1.1
4
9
 
5
10
  * Added check that local video files exist.
data/jekyll_video.gemspec CHANGED
@@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
29
29
  spec.summary = 'Embed an HTML video into a web page.'
30
30
  spec.version = JekyllVideo::VERSION
31
31
  spec.add_dependency 'jekyll', '>= 3.5.0'
32
- spec.add_dependency 'jekyll_plugin_support', '>= 0.8.6'
32
+ spec.add_dependency 'jekyll_plugin_support', '>= 1.0.0'
33
33
  end
@@ -1,3 +1,3 @@
1
1
  module JekyllVideo
2
- VERSION = '0.1.1'.freeze unless defined? VERSION
2
+ VERSION = '0.1.2'.freeze unless defined? VERSION
3
3
  end
data/lib/jekyll_video.rb CHANGED
@@ -5,7 +5,7 @@ require 'jekyll_plugin_support'
5
5
  require_relative 'jekyll_video/version'
6
6
 
7
7
  # Require all Ruby files in 'lib/', except this file
8
- Dir[File.join(__dir__, '*.rb')].each do |file|
8
+ Dir[File.join(__dir__, '*.rb')].sort.each do |file|
9
9
  require file unless file.end_with?('/jekyll_video.rb')
10
10
  end
11
11
 
data/lib/video.rb CHANGED
@@ -53,6 +53,6 @@ module JekyllVideo
53
53
  "<div class='jekyll_video_error'>#{e.class} raised in #{@tag_name} tag\n#{msg}</div>"
54
54
  end
55
55
 
56
- JekyllPluginHelper.register(self, PLUGIN_NAME)
56
+ JekyllSupport::JekyllPluginHelper.register(self, PLUGIN_NAME)
57
57
  end
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_video
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Slinn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-11 00:00:00.000000000 Z
11
+ date: 2024-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.8.6
33
+ version: 1.0.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 0.8.6
40
+ version: 1.0.0
41
41
  description: 'Embed an HTML video into a web page.
42
42
 
43
43
  '
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  - !ruby/object:Gem::Version
85
85
  version: '0'
86
86
  requirements: []
87
- rubygems_version: 3.5.10
87
+ rubygems_version: 3.5.16
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: Embed an HTML video into a web page.