jekyll_archive_create 1.0.0 → 1.0.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 +81 -12
- data/CHANGELOG.md +11 -1
- data/README.md +45 -16
- data/Rakefile +1 -3
- data/jekyll_archive_create.gemspec +22 -29
- data/lib/jekyll_archive_create/version.rb +2 -4
- data/lib/jekyll_archive_create.rb +53 -44
- metadata +11 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbfdc187732bb7308269e72e2cd4efdf4fcbeecc65b96f0741898f5fdf744b64
|
4
|
+
data.tar.gz: c30082b96f08d8d44365b658502a36acec7efbcdb65cf65d9d843c5380bb2ae9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1b4d88c919312a64c331b654ef9bd0436bb40552acbf108ceb293bd530623793e69b324a037c59570c7546d0458eb59c2b7a9a3c788ae3a6aafa6bcbd0fe49e
|
7
|
+
data.tar.gz: d71e8f628c977d12e13ebd9f1acccb7876954327579374c692252eeb247d2f91e99e665fcbf04e227e8932d3ce44cb53c356c83e6d62dcc14044cc3452eb032d
|
data/.rubocop.yml
CHANGED
@@ -1,37 +1,106 @@
|
|
1
|
-
|
2
|
-
rubocop-jekyll
|
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
|
3
10
|
|
4
11
|
AllCops:
|
5
12
|
Exclude:
|
6
|
-
|
7
|
-
|
13
|
+
- demo/_site/**/*
|
14
|
+
- exe/**/*
|
15
|
+
- vendor/**/*
|
16
|
+
- Gemfile*
|
8
17
|
NewCops: enable
|
9
18
|
TargetRubyVersion: 2.6
|
10
19
|
|
20
|
+
Gemspec/DeprecatedAttributeAssignment:
|
21
|
+
Enabled: false
|
22
|
+
|
23
|
+
Gemspec/RequireMFA:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
Layout/HashAlignment:
|
27
|
+
EnforcedColonStyle: table
|
28
|
+
Exclude:
|
29
|
+
- jekyll_archive_create.gemspec
|
30
|
+
|
31
|
+
Layout/InitialIndentation:
|
32
|
+
Exclude:
|
33
|
+
- README.md
|
34
|
+
|
11
35
|
Layout/LineLength:
|
12
36
|
Max: 150
|
13
37
|
|
38
|
+
Layout/MultilineMethodCallIndentation:
|
39
|
+
Enabled: false
|
40
|
+
|
14
41
|
Metrics/AbcSize:
|
15
|
-
Max:
|
42
|
+
Max: 45
|
43
|
+
|
44
|
+
Lint/RedundantCopDisableDirective:
|
16
45
|
Exclude:
|
17
|
-
-
|
46
|
+
- jekyll_archive_create.gemspec
|
18
47
|
|
19
48
|
Metrics/BlockLength:
|
20
49
|
Exclude:
|
21
|
-
-
|
22
|
-
-
|
50
|
+
- jekyll_archive_create.gemspec
|
51
|
+
- spec/**/*
|
23
52
|
|
24
53
|
Metrics/ClassLength:
|
25
|
-
Max: 50
|
26
54
|
Exclude:
|
27
|
-
-
|
55
|
+
- spec/**/*
|
56
|
+
Max: 40
|
57
|
+
|
58
|
+
Metrics/CyclomaticComplexity:
|
59
|
+
Max: 20
|
28
60
|
|
29
61
|
Metrics/MethodLength:
|
62
|
+
Max: 40
|
63
|
+
|
64
|
+
Metrics/PerceivedComplexity:
|
65
|
+
Max: 15
|
66
|
+
|
67
|
+
Naming/FileName:
|
30
68
|
Exclude:
|
31
|
-
-
|
69
|
+
- Rakefile
|
70
|
+
|
71
|
+
RSpec/ExampleLength:
|
72
|
+
Max: 20
|
73
|
+
|
74
|
+
RSpec/MultipleExpectations:
|
75
|
+
Max: 15
|
32
76
|
|
33
77
|
Style/CommandLiteral:
|
34
78
|
Enabled: false
|
35
79
|
|
80
|
+
Style/CommentedKeyword:
|
81
|
+
Enabled: false
|
82
|
+
|
83
|
+
Style/Documentation:
|
84
|
+
Enabled: false
|
85
|
+
|
86
|
+
Style/FrozenStringLiteralComment:
|
87
|
+
Enabled: false
|
88
|
+
|
89
|
+
Style/PercentLiteralDelimiters:
|
90
|
+
Enabled: false
|
91
|
+
|
92
|
+
Style/RegexpLiteral:
|
93
|
+
Enabled: false
|
94
|
+
|
95
|
+
Style/StringConcatenation:
|
96
|
+
Exclude:
|
97
|
+
- spec/**/*
|
98
|
+
|
36
99
|
Style/StringLiterals:
|
37
|
-
|
100
|
+
Enabled: false
|
101
|
+
|
102
|
+
Style/StringLiteralsInInterpolation:
|
103
|
+
Enabled: false
|
104
|
+
|
105
|
+
Style/TrailingCommaInHashLiteral:
|
106
|
+
EnforcedStyleForMultiline: comma
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
|
+
## 1.0.2 / 2023-02-21
|
2
|
+
* Improved `.gitignore` handling.
|
3
|
+
* Improved logging output.
|
4
|
+
* Added `demo` website.
|
5
|
+
* Improved Rubocop usage.
|
6
|
+
|
7
|
+
## 1.0.1 / 2022-04-05
|
8
|
+
* Updated to jekyll_plugin_logger v2.1.0
|
9
|
+
|
1
10
|
## 1.0.0 / 2022-03-13
|
2
|
-
* Made into a Ruby gem and published on RubyGems.org as
|
11
|
+
* Made into a Ruby gem and published on RubyGems.org as
|
12
|
+
[jekyll_archive_create](https://rubygems.org/gems/jekyll_archive_create).
|
3
13
|
* `bin/attach` script added for debugging
|
4
14
|
* Rubocop standards added
|
5
15
|
* Proper versioning and CHANGELOG.md added
|
data/README.md
CHANGED
@@ -4,15 +4,16 @@ jekyll_archive_create
|
|
4
4
|
|
5
5
|
This is a Jekyll plugin that makes tar or zip files based on `_config.yml` entries.
|
6
6
|
|
7
|
-
In production mode, the archives are built each time Jekyll generates the
|
7
|
+
In production mode, the archives are built each time Jekyll generates the website. In development mode, the archives are only built if they do not already exist, or if `delete: true` is set for that archive in `_config.yml`. Archives are placed in the top-level of the Jekyll project, and are copied to `_site` by Jekyll's normal build process. Entries are created in `.gitignore` for each of the generated archives.
|
8
8
|
|
9
9
|
## Usage
|
10
10
|
This plugin supports 4 types of file specifications:
|
11
11
|
|
12
|
-
* Absolute filenames (start with
|
13
|
-
* Filenames relative to the top-level directory of the Jekyll
|
14
|
-
|
15
|
-
*
|
12
|
+
* Absolute filenames (start with `/`).
|
13
|
+
* Filenames relative to the top-level directory of the Jekyll website
|
14
|
+
(do not preface with `.` or `/`).
|
15
|
+
* Filenames relative to the user home directory (preface with `~`).
|
16
|
+
* Executable filenames on the PATH (preface with `!`).
|
16
17
|
|
17
18
|
## `_config.yml` Syntax
|
18
19
|
Any number of archives can be specified. Each archive has 3 properties: `archive_name`, `delete` (defaults to true) and `files`. Take care that the dashes have exactly 2 spaces before them, and that the 2 lines following each dash have exactly 4 spaces in front.
|
@@ -22,16 +23,18 @@ make_archive:
|
|
22
23
|
-
|
23
24
|
archive_name: cloud9.zip
|
24
25
|
delete: true # This is the default, and need not be specified.
|
25
|
-
files: [ index.html, 404.html, ~/.ssh/config, /etc/passwd, '!
|
26
|
+
files: [ index.html, 404.html, ~/.ssh/config, /etc/passwd, '!date' ]
|
26
27
|
-
|
27
28
|
archive_name: cloud9.tar
|
28
29
|
delete: false # Do not overwrite the archive if it already exists
|
29
|
-
files: [ index.html, 404.html, ~/.ssh/config, /etc/passwd, '!
|
30
|
+
files: [ index.html, 404.html, ~/.ssh/config, /etc/passwd, '!date' ]
|
30
31
|
```
|
31
32
|
|
33
|
+
The file called `date` contains the executable program or script of that name.
|
34
|
+
|
32
35
|
|
33
36
|
## Additional Information
|
34
|
-
More information is available on my
|
37
|
+
More information is available on my website about [my Jekyll plugins](https://mslinn.com/jekyll/3000-jekyll-plugins.html#archive_create).
|
35
38
|
|
36
39
|
|
37
40
|
## Installation
|
@@ -44,13 +47,44 @@ group :jekyll_plugins do
|
|
44
47
|
end
|
45
48
|
```
|
46
49
|
|
47
|
-
And then
|
50
|
+
And then install dependent gems as usual:
|
48
51
|
|
49
52
|
$ bundle install
|
50
53
|
|
51
|
-
Or install it yourself as:
|
52
54
|
|
53
|
-
|
55
|
+
## Demo Website
|
56
|
+
A test/demo website is provided in the `demo` directory.
|
57
|
+
You can run it under a debugger, or let it run free.
|
58
|
+
|
59
|
+
The `demo/_bin/debug` script can set various parameters for the demo.
|
60
|
+
View the help information with the `-h` option:
|
61
|
+
```shell
|
62
|
+
$ demo/_bin/debug -h
|
63
|
+
|
64
|
+
debug - Run the demo Jekyll website.
|
65
|
+
|
66
|
+
By default the demo Jekyll website runs without restriction under ruby-debug-ide and debase.
|
67
|
+
View it at http://localhost:4444
|
68
|
+
|
69
|
+
Options:
|
70
|
+
-h Show this error message
|
71
|
+
|
72
|
+
-r Run freely, without a debugger
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
### Debugging the Demo
|
77
|
+
To run under a debugger, for example Visual Studio Code:
|
78
|
+
1. Set breakpoints.
|
79
|
+
|
80
|
+
2. Initiate a debug session from the command line:
|
81
|
+
```shell
|
82
|
+
$ demo/bin/debug
|
83
|
+
```
|
84
|
+
|
85
|
+
3. Once the `Fast Debugger` signon appears, launch the Visual Studio Code launch configuration called `Attach rdebug-ide`.
|
86
|
+
|
87
|
+
4. View the generated website at [`http://localhost:4444`](http://localhost:4444).
|
54
88
|
|
55
89
|
|
56
90
|
## Development
|
@@ -63,11 +97,6 @@ You can also run `bin/console` for an interactive prompt that will allow you to
|
|
63
97
|
### Build and Install Locally
|
64
98
|
To build and install this gem onto your local machine, run:
|
65
99
|
```shell
|
66
|
-
$ rake install:local
|
67
|
-
```
|
68
|
-
|
69
|
-
The following also does the same thing:
|
70
|
-
```shell
|
71
100
|
$ bundle exec rake install
|
72
101
|
```
|
73
102
|
|
data/Rakefile
CHANGED
@@ -1,44 +1,37 @@
|
|
1
|
-
|
1
|
+
require_relative 'lib/jekyll_archive_create/version'
|
2
2
|
|
3
|
-
|
3
|
+
Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
4
|
+
github = 'https://github.com/mslinn/jekyll_archive_create'
|
4
5
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
spec.authors = ["Mike Slinn"]
|
9
|
-
spec.bindir = "exe"
|
6
|
+
spec.authors = ['Mike Slinn']
|
7
|
+
spec.bindir = 'exe'
|
10
8
|
spec.description = <<~END_OF_DESC
|
11
9
|
Jekyll generator for creating tar and zip files.
|
12
10
|
END_OF_DESC
|
13
|
-
spec.email = [
|
14
|
-
spec.files = Dir[
|
15
|
-
spec.homepage =
|
16
|
-
spec.license =
|
11
|
+
spec.email = ['mslinn@mslinn.com']
|
12
|
+
spec.files = Dir['.rubocop.yml', 'LICENSE.*', 'Rakefile', '{lib,spec}/**/*', '*.gemspec', '*.md']
|
13
|
+
spec.homepage = 'https://www.mslinn.com/blog/2020/10/03/jekyll-plugins.html#make_archive'
|
14
|
+
spec.license = 'MIT'
|
17
15
|
spec.metadata = {
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
16
|
+
'allowed_push_host' => 'https://rubygems.org',
|
17
|
+
'bug_tracker_uri' => "#{github}/issues",
|
18
|
+
'changelog_uri' => "#{github}/CHANGELOG.md",
|
19
|
+
'homepage_uri' => spec.homepage,
|
20
|
+
'source_code_uri' => github,
|
23
21
|
}
|
24
|
-
spec.name =
|
22
|
+
spec.name = 'jekyll_archive_create'
|
25
23
|
spec.post_install_message = <<~END_MESSAGE
|
26
24
|
|
27
25
|
Thanks for installing #{spec.name}!
|
28
26
|
|
29
27
|
END_MESSAGE
|
30
|
-
spec.require_paths = [
|
31
|
-
spec.required_ruby_version =
|
32
|
-
spec.summary =
|
28
|
+
spec.require_paths = ['lib']
|
29
|
+
spec.required_ruby_version = '>= 2.6.0'
|
30
|
+
spec.summary = 'Jekyll generator for creating tar and zip files.'
|
33
31
|
spec.test_files = spec.files.grep(%r!^(test|spec|features)/!)
|
34
|
-
spec.version =
|
35
|
-
|
36
|
-
spec.add_dependency "jekyll", ">= 3.5.0"
|
37
|
-
spec.add_dependency "jekyll_plugin_logger", "~> 2.0.0"
|
32
|
+
spec.version = JekyllArchiveCreateVersion::VERSION
|
38
33
|
|
39
|
-
spec.
|
40
|
-
|
41
|
-
|
42
|
-
# spec.add_development_dependency "rubocop-rspec"
|
43
|
-
spec.add_development_dependency "ruby-debug-ide"
|
34
|
+
spec.add_dependency 'jekyll', '>= 3.5.0'
|
35
|
+
spec.add_dependency 'jekyll_plugin_logger', '~> 2.1.0'
|
36
|
+
spec.add_dependency 'rubyzip'
|
44
37
|
end
|
@@ -1,14 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require
|
4
|
-
require
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
8
|
-
require
|
9
|
-
require
|
10
|
-
|
11
|
-
require_relative "jekyll_archive_create/version"
|
1
|
+
require 'fileutils'
|
2
|
+
require 'jekyll'
|
3
|
+
require 'jekyll_plugin_logger'
|
4
|
+
require 'ptools'
|
5
|
+
require 'rubygems'
|
6
|
+
require 'rubygems/package'
|
7
|
+
require 'tmpdir'
|
8
|
+
require 'zlib'
|
9
|
+
require 'zip'
|
10
|
+
require_relative 'jekyll_archive_create/version'
|
12
11
|
|
13
12
|
module Jekyll
|
14
13
|
# Makes tar or zip file based on _config.yml entry
|
@@ -19,10 +18,10 @@ module Jekyll
|
|
19
18
|
# @param site [Jekyll.Site] Automatically provided by Jekyll plugin mechanism
|
20
19
|
# @return [void]
|
21
20
|
def generate(site)
|
22
|
-
@logger = PluginMetaLogger.instance.new_logger(self)
|
23
|
-
@live_reload = site.config[
|
21
|
+
@logger = PluginMetaLogger.instance.new_logger(self, PluginMetaLogger.instance.config)
|
22
|
+
@live_reload = site.config['livereload']
|
24
23
|
|
25
|
-
archive_config = site.config[
|
24
|
+
archive_config = site.config['make_archive']
|
26
25
|
return if archive_config.nil?
|
27
26
|
|
28
27
|
archive_config.each do |config|
|
@@ -35,24 +34,28 @@ module Jekyll
|
|
35
34
|
private
|
36
35
|
|
37
36
|
def setup_instance_variables(config)
|
38
|
-
@archive_name = config[
|
39
|
-
abort
|
37
|
+
@archive_name = config['archive_name'] # Relative to _site.source
|
38
|
+
abort 'Error: archive_name was not specified in _config.yml.' if @archive_name.nil?
|
40
39
|
|
41
40
|
@archive_type = archive_type(@archive_name)
|
42
41
|
|
43
|
-
@archive_files = config[
|
44
|
-
abort
|
42
|
+
@archive_files = config['files'].compact
|
43
|
+
abort 'Error: archive files were not specified in _config.yml.' if @archive_files.nil?
|
45
44
|
|
46
|
-
delete_archive = config[
|
45
|
+
delete_archive = config['delete']
|
47
46
|
@force_delete = delete_archive.nil? ? !@live_reload : delete_archive
|
48
47
|
|
49
|
-
@logger.debug
|
48
|
+
@logger.debug do
|
49
|
+
part1 = "@archive_name=#{@archive_name}; @live_reload=#{@live_reload};"
|
50
|
+
part2 = "@force_delete=#{@force_delete}; @archive_files=#{@archive_files}"
|
51
|
+
"#{part1} #{part2}"
|
52
|
+
end
|
50
53
|
end
|
51
54
|
|
52
55
|
def archive_type(archive_name)
|
53
|
-
if archive_name.end_with?
|
56
|
+
if archive_name.end_with? '.zip'
|
54
57
|
:zip
|
55
|
-
elsif archive_name.end_with?
|
58
|
+
elsif archive_name.end_with? '.tar'
|
56
59
|
:tar
|
57
60
|
else
|
58
61
|
abort "Error: archive must be zip or tar; #{archive_name} is of an unknown archive type."
|
@@ -73,10 +76,16 @@ module Jekyll
|
|
73
76
|
make_tar_or_zip(archive_exists, archive_name_full, source)
|
74
77
|
|
75
78
|
@logger.debug { "Looking for #{@archive_name} in .gitignore..." }
|
76
|
-
|
79
|
+
if File.exist? '.gitignore'
|
80
|
+
return if File.foreach('.gitignore').grep(%r!^#{@archive_name}\n?!).any?
|
77
81
|
|
78
|
-
|
79
|
-
|
82
|
+
@logger.warn "#{@archive_name} was not found in .gitignore, adding entry."
|
83
|
+
else
|
84
|
+
@logger.warn "#{Dir.pwd}/.gitignore does not exist, creating it."
|
85
|
+
FileUtils.touch '.gitignore'
|
86
|
+
end
|
87
|
+
|
88
|
+
File.open('.gitignore', 'a') do |f|
|
80
89
|
f.puts File.basename(@archive_name)
|
81
90
|
end
|
82
91
|
end
|
@@ -93,14 +102,14 @@ module Jekyll
|
|
93
102
|
end
|
94
103
|
|
95
104
|
def make_tar_or_zip(archive_exists, archive_name_full, source)
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
105
|
+
return unless !archive_exists || @force_delete
|
106
|
+
|
107
|
+
@logger.debug { "Making #{archive_name_full}" }
|
108
|
+
case @archive_type
|
109
|
+
when :tar
|
110
|
+
make_tar(archive_name_full, source)
|
111
|
+
when :zip
|
112
|
+
make_zip(archive_name_full, source)
|
104
113
|
end
|
105
114
|
end
|
106
115
|
|
@@ -117,9 +126,9 @@ module Jekyll
|
|
117
126
|
|
118
127
|
def write_tar(tar_name, dirname)
|
119
128
|
# Modified from https://gist.github.com/sinisterchipmunk/1335041/5be4e6039d899c9b8cca41869dc6861c8eb71f13
|
120
|
-
File.open(tar_name,
|
129
|
+
File.open(tar_name, 'wb') do |tarfile|
|
121
130
|
Gem::Package::TarWriter.new(tarfile) do |tar|
|
122
|
-
Dir[File.join(dirname,
|
131
|
+
Dir[File.join(dirname, '**/*')].each do |filename|
|
123
132
|
write_tar_entry(tar, dirname, filename)
|
124
133
|
end
|
125
134
|
end
|
@@ -128,12 +137,12 @@ module Jekyll
|
|
128
137
|
|
129
138
|
def write_tar_entry(tar, dirname, filename)
|
130
139
|
mode = File.stat(filename).mode
|
131
|
-
relative_file = filename.sub(%r!^#{Regexp.escape dirname}/?!,
|
140
|
+
relative_file = filename.sub(%r!^#{Regexp.escape dirname}/?!, '')
|
132
141
|
if File.directory?(filename)
|
133
142
|
tar.mkdir relative_file, mode
|
134
143
|
else
|
135
144
|
tar.add_file relative_file, mode do |tf|
|
136
|
-
File.open(filename,
|
145
|
+
File.open(filename, 'rb') { |f| tf.write f.read }
|
137
146
|
end
|
138
147
|
end
|
139
148
|
end
|
@@ -141,19 +150,19 @@ module Jekyll
|
|
141
150
|
# @return tuple of filename (without path) and fully qualified filename
|
142
151
|
def qualify_file_name(path, source)
|
143
152
|
case path[0]
|
144
|
-
when
|
153
|
+
when '/' # Is the file absolute?
|
145
154
|
@logger.debug { "Absolute filename: #{path}" }
|
146
155
|
[File.basename(path), path]
|
147
|
-
when
|
148
|
-
clean_path = path[1
|
156
|
+
when '!' # Should the file be found on the PATH?
|
157
|
+
clean_path = path[1..]
|
149
158
|
filename_full = File.which(clean_path)
|
150
159
|
abort "Error: #{clean_path} is not on the PATH." if filename_full.nil?
|
151
160
|
|
152
161
|
@logger.debug { "File on PATH: #{clean_path} -> #{filename_full}" }
|
153
162
|
[File.basename(clean_path), filename_full]
|
154
|
-
when
|
155
|
-
clean_path = path[2
|
156
|
-
filename_full = File.join(
|
163
|
+
when '~' # Is the file relative to user's home directory?
|
164
|
+
clean_path = path[2..]
|
165
|
+
filename_full = File.join(Dir.home, clean_path)
|
157
166
|
@logger.debug { "File in home directory: #{clean_path} -> #{filename_full}" }
|
158
167
|
[File.basename(clean_path), filename_full]
|
159
168
|
else # The file is relative to the Jekyll website top-level directory
|
@@ -162,6 +171,6 @@ module Jekyll
|
|
162
171
|
end
|
163
172
|
end
|
164
173
|
|
165
|
-
PluginMetaLogger.instance.logger.info { "Loaded jekyll_archive_create v#{
|
174
|
+
PluginMetaLogger.instance.logger.info { "Loaded jekyll_archive_create v#{JekyllArchiveCreateVersion::VERSION} plugin." }
|
166
175
|
end
|
167
176
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_archive_create
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Slinn
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -30,36 +30,22 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.
|
33
|
+
version: 2.1.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: 2.
|
40
|
+
version: 2.1.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: rubyzip
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
|
-
type: :
|
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: ruby-debug-ide
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
48
|
+
type: :runtime
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
@@ -68,7 +54,7 @@ dependencies:
|
|
68
54
|
version: '0'
|
69
55
|
description: 'Jekyll generator for creating tar and zip files.
|
70
56
|
|
71
|
-
'
|
57
|
+
'
|
72
58
|
email:
|
73
59
|
- mslinn@mslinn.com
|
74
60
|
executables: []
|
@@ -110,8 +96,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
96
|
- !ruby/object:Gem::Version
|
111
97
|
version: '0'
|
112
98
|
requirements: []
|
113
|
-
rubygems_version: 3.
|
114
|
-
signing_key:
|
99
|
+
rubygems_version: 3.3.3
|
100
|
+
signing_key:
|
115
101
|
specification_version: 4
|
116
102
|
summary: Jekyll generator for creating tar and zip files.
|
117
103
|
test_files: []
|
104
|
+
...
|