jekyll-staging 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c23f76237ed79c27e54b62139f2f165952b65ba3
4
- data.tar.gz: 7f6c1370ae57a449e2784d67a100abf515ecce88
3
+ metadata.gz: 998fa4dd69ea57ee2a2e9603bac9efc3db466569
4
+ data.tar.gz: fcf22ca82c1782191fa89828822895a952b8eb8a
5
5
  SHA512:
6
- metadata.gz: 1234f61161c72ee84cd600b78f83bd1122e991f41aa00c30d63f0344ddf1cd67eda3d62dcae166c8ce38e47bfa730b965e902d4f9e839fc453394e6fa0a289d3
7
- data.tar.gz: 32a38912fe54a5925a36c7e4e5637d1d33660b546435260226da0bef9598a6980d8bac926644d1fdb6c5a6ed20a1f406f5782497370e75a9318523b55188a96a
6
+ metadata.gz: d890ece7c923187574281ba72cb05407ec23c844c8286acbf73b1e77c9b08935d5e56b642de5fb5cd0fc09a1d2a9d0d2246d3f4f029ee51019836d0f65beb87b
7
+ data.tar.gz: 8e9180ba87fa2aeb5b149db51a5a02064a52cb34f10a0e0607e0ea6dcecf2155bc51d21577f733c47457f33f042b76ba1cc7f916f1c9250cb78bcd573fa8f1f0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll-staging (1.0.1)
4
+ jekyll-staging (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "jekyll-staging"
5
- spec.version = "1.0.1"
5
+ spec.version = "1.0.2"
6
6
  spec.authors = ["Matt Gemmell"]
7
7
  spec.email = ["matt@mattgemmell.com"]
8
8
  spec.summary = %q{Stage and unstage draft posts in Jekyll.}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-staging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Gemmell