jekyll-staging 1.0.1 → 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/Gemfile.lock +1 -1
- data/bin/stage +3 -3
- data/jekyll-staging.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 998fa4dd69ea57ee2a2e9603bac9efc3db466569
|
|
4
|
+
data.tar.gz: fcf22ca82c1782191fa89828822895a952b8eb8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d890ece7c923187574281ba72cb05407ec23c844c8286acbf73b1e77c9b08935d5e56b642de5fb5cd0fc09a1d2a9d0d2246d3f4f029ee51019836d0f65beb87b
|
|
7
|
+
data.tar.gz: 8e9180ba87fa2aeb5b149db51a5a02064a52cb34f10a0e0607e0ea6dcecf2155bc51d21577f733c47457f33f042b76ba1cc7f916f1c9250cb78bcd573fa8f1f0
|
data/Gemfile.lock
CHANGED
data/bin/stage
CHANGED
|
@@ -66,13 +66,13 @@ end
|
|
|
66
66
|
configuration = read_or_ask_for_configuration
|
|
67
67
|
|
|
68
68
|
# Your Jekyll site's local root directory (it has the "_config.yml" file in it).
|
|
69
|
-
$jekyll_root = configuration['jekyll_root']
|
|
69
|
+
$jekyll_root = configuration['jekyll_root'].strip
|
|
70
70
|
|
|
71
71
|
# Wherever you keep your local in-progress drafts, outside of your Jekyll site.
|
|
72
|
-
$drafts_dir = configuration['drafts_dir']
|
|
72
|
+
$drafts_dir = configuration['drafts_dir'].strip
|
|
73
73
|
|
|
74
74
|
# File-extension for your drafts and post files.
|
|
75
|
-
$file_extension = configuration['file_extension']
|
|
75
|
+
$file_extension = configuration['file_extension'].strip
|
|
76
76
|
|
|
77
77
|
# Note: It's assumed that your drafts' filenames DON'T have date-prefixes.
|
|
78
78
|
|
data/jekyll-staging.gemspec
CHANGED