jekyll_file_wizard 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4c00060077c48a414951a4157cee39e515b3dd132aae42bcc41ef3b280afa564
4
+ data.tar.gz: d1ab0e17ac25fb86d5f8b376953d3651e33c7fa7680bb60d64e183ea706e1de4
5
+ SHA512:
6
+ metadata.gz: 22778859b55b84f01c3209c796c2fa85d06719ae7e858cee664385012fec01dbd28dcf478d2a8b2ebdf52711f0a0f12c1ac5256882af4673487cbf10c33e0770
7
+ data.tar.gz: ae4689f4eb790d2544107e48d5ce05659b009fa94d239b125573f0e007fde3509c97fdba618ce00953730927ebdd6ef21918e4e24985c7093c0c89633ba7ab5f
data/.gitignore ADDED
@@ -0,0 +1,118 @@
1
+ # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2
+ # Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,jekyll,ruby
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,jekyll,ruby
4
+
5
+ ### Jekyll ###
6
+ _site/
7
+ .sass-cache/
8
+ .jekyll-cache/
9
+ .jekyll-metadata
10
+ # Ignore folders generated by Bundler
11
+ .bundle/
12
+ vendor/
13
+
14
+ ### Ruby ###
15
+ *.gem
16
+ *.rbc
17
+ /.config
18
+ /coverage/
19
+ /InstalledFiles
20
+ /pkg/
21
+ /spec/reports/
22
+ /spec/examples.txt
23
+ /test/tmp/
24
+ /test/version_tmp/
25
+ /tmp/
26
+
27
+ # Used by dotenv library to load environment variables.
28
+ # .env
29
+
30
+ # Ignore Byebug command history file.
31
+ .byebug_history
32
+
33
+ ## Specific to RubyMotion:
34
+ .dat*
35
+ .repl_history
36
+ build/
37
+ *.bridgesupport
38
+ build-iPhoneOS/
39
+ build-iPhoneSimulator/
40
+
41
+ ## Specific to RubyMotion (use of CocoaPods):
42
+ #
43
+ # We recommend against adding the Pods directory to your .gitignore. However
44
+ # you should judge for yourself, the pros and cons are mentioned at:
45
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
46
+ # vendor/Pods/
47
+
48
+ ## Documentation cache and generated files:
49
+ /.yardoc/
50
+ /_yardoc/
51
+ /doc/
52
+ /rdoc/
53
+
54
+ ## Environment normalization:
55
+ /.bundle/
56
+ /vendor/bundle
57
+ /lib/bundler/man/
58
+
59
+ # for a library or gem, you might want to ignore these files since the code is
60
+ # intended to run in multiple environments; otherwise, check them in:
61
+ Gemfile.lock
62
+ .ruby-version
63
+ .ruby-gemset
64
+
65
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
66
+ .rvmrc
67
+
68
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
69
+ # .rubocop-https?--*
70
+
71
+ ### VisualStudioCode ###
72
+ .vscode/*
73
+ !.vscode/settings.json
74
+ !.vscode/tasks.json
75
+ !.vscode/launch.json
76
+ !.vscode/extensions.json
77
+ !.vscode/*.code-snippets
78
+
79
+ # Local History for Visual Studio Code
80
+ .history/
81
+
82
+ # Built Visual Studio Code Extensions
83
+ *.vsix
84
+
85
+ ### VisualStudioCode Patch ###
86
+ # Ignore all local history of files
87
+ .history
88
+ .ionide
89
+
90
+ ### Windows ###
91
+ # Windows thumbnail cache files
92
+ Thumbs.db
93
+ Thumbs.db:encryptable
94
+ ehthumbs.db
95
+ ehthumbs_vista.db
96
+
97
+ # Dump file
98
+ *.stackdump
99
+
100
+ # Folder config file
101
+ [Dd]esktop.ini
102
+
103
+ # Recycle Bin used on file shares
104
+ $RECYCLE.BIN/
105
+
106
+ # Windows Installer files
107
+ *.cab
108
+ *.msi
109
+ *.msix
110
+ *.msm
111
+ *.msp
112
+
113
+ # Windows shortcuts
114
+ *.lnk
115
+
116
+ # End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,jekyll,ruby
117
+
118
+ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
@@ -0,0 +1,3 @@
1
+ {
2
+ "iis.configDir": ""
3
+ }
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # gem "rails"
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Thaddeus Thomas
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.