nanoc 4.3.3 → 4.3.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67e0bd2577c8efa7e807709b09a5b4df6e95024b
4
- data.tar.gz: 4adc8f82bbc6d85e2a77b06a3792aac2b0f05d71
3
+ metadata.gz: 1a8ed9bd9a64698edbbf78399e6d13de4a8b5f9b
4
+ data.tar.gz: c08b6a68b9510687363655a1084f9fda24e5c99e
5
5
  SHA512:
6
- metadata.gz: 17f1e158368ac1f9f6b0b1970f0d0cc5cdf616160277fffba13d2e0f9069ffd9db60a80a64cdf144912043c52e71086c57da71540650b9005286fab59f8844f4
7
- data.tar.gz: d26cec92f468874b2d14133b5d5b7e360d591443a559590b0b5bd85bb81f3154d981d80dea5c3f7f76d4071dcf8b8798cd1fbb496a7aba0128bf960903682b6d
6
+ metadata.gz: 20059e74f3b30e35d3a1171ce94acb44e0ee152c62dcc1441bde38a55cbb3a290c22aeb4ebafd807a80b5b8df8b453a726c60b5cebaf669d3162f522a01ea101
7
+ data.tar.gz: ccd04836e2a4df8e88a629eb30df226ab33206230c3ba10951fb53150d0f1f0995d1c6543f145a78be82e7ac18454a9521199bce2928a00393d049a09f86e380
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nanoc (4.3.3)
4
+ nanoc (4.3.4)
5
5
  cri (~> 2.3)
6
6
  hamster (~> 3.0)
7
7
  ref (~> 2.0)
@@ -52,7 +52,7 @@ GEM
52
52
  diff-lcs (1.2.5)
53
53
  docile (1.1.5)
54
54
  erubis (2.7.0)
55
- excon (0.52.0)
55
+ excon (0.53.0)
56
56
  execjs (2.7.0)
57
57
  ffi (1.9.14)
58
58
  fission (0.5.0)
@@ -108,7 +108,7 @@ GEM
108
108
  fog-json (~> 1.0)
109
109
  fog-xml (~> 0.1)
110
110
  ipaddress (~> 0.8)
111
- fog-core (1.42.0)
111
+ fog-core (1.43.0)
112
112
  builder
113
113
  excon (~> 0.49)
114
114
  formatador (~> 0.2)
@@ -273,7 +273,7 @@ GEM
273
273
  rspec-core (~> 3.5.0)
274
274
  rspec-expectations (~> 3.5.0)
275
275
  rspec-mocks (~> 3.5.0)
276
- rspec-core (3.5.3)
276
+ rspec-core (3.5.4)
277
277
  rspec-support (~> 3.5.0)
278
278
  rspec-expectations (3.5.0)
279
279
  diff-lcs (>= 1.2.0, < 2.0)
@@ -290,7 +290,7 @@ GEM
290
290
  unicode-display_width (~> 1.0, >= 1.0.1)
291
291
  ruby-progressbar (1.8.1)
292
292
  ruby_dep (1.4.0)
293
- rubypants (0.5.0)
293
+ rubypants (0.5.1)
294
294
  safe_yaml (1.0.4)
295
295
  sass (3.4.22)
296
296
  shellany (0.0.1)
@@ -304,7 +304,7 @@ GEM
304
304
  tilt (>= 1.3.3, < 2.1)
305
305
  slop (3.6.0)
306
306
  temple (0.7.7)
307
- term-ansicolor (1.3.2)
307
+ term-ansicolor (1.4.0)
308
308
  tins (~> 1.0)
309
309
  therubyracer (0.12.2)
310
310
  libv8 (~> 3.16.14.0)
data/NEWS.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Nanoc news
2
2
 
3
+ ## 4.3.4 (2016-10-02)
4
+
5
+ Fixes:
6
+
7
+ * Fixed compilation crash when output directory does not exist and auto-pruning is enabled (#948, #949)
8
+
3
9
  ## 4.3.3 (2016-09-26)
4
10
 
5
11
  Fixes:
@@ -26,6 +26,8 @@ module Nanoc::Extra
26
26
  def run
27
27
  require 'find'
28
28
 
29
+ return unless File.directory?(site.config[:output_dir])
30
+
29
31
  # Get compiled files
30
32
  # FIXME: requires #build_reps to have been called
31
33
  all_raw_paths = site.compiler.reps.flat_map { |r| r.raw_paths.values }
data/lib/nanoc/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Nanoc
2
2
  # The current Nanoc version.
3
- VERSION = '4.3.3'.freeze
3
+ VERSION = '4.3.4'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nanoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.3
4
+ version: 4.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Defreyne
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-26 00:00:00.000000000 Z
11
+ date: 2016-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cri
@@ -401,7 +401,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
401
401
  version: '0'
402
402
  requirements: []
403
403
  rubyforge_project:
404
- rubygems_version: 2.6.6
404
+ rubygems_version: 2.6.7
405
405
  signing_key:
406
406
  specification_version: 4
407
407
  summary: A static-site generator with a focus on flexibility.