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 +4 -4
- data/.rubocop.yml +9 -5
- data/CHANGELOG.md +5 -0
- data/jekyll_video.gemspec +1 -1
- data/lib/jekyll_video/version.rb +1 -1
- data/lib/jekyll_video.rb +1 -1
- data/lib/video.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06f177eb1343f4c79a6183be639fa87cd6daf10182513a5befa818a893b1c0a2
|
|
4
|
+
data.tar.gz: f5691e99912c74a7282b84de6358d4c220e01c9c73c59e291b466c8309c1945f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
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.
|
|
32
|
+
spec.add_dependency 'jekyll_plugin_support', '>= 1.0.0'
|
|
33
33
|
end
|
data/lib/jekyll_video/version.rb
CHANGED
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
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.
|
|
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
|
+
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.
|
|
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.
|
|
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.
|
|
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.
|