stevenson 2.3.2 → 2.3.3

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: d9b3131d56856c57f1a694eb81fee86b3e567bc3
4
- data.tar.gz: 1366e70b4d60d352b28e0533ed32e4185de939c0
3
+ metadata.gz: 4206094ec9c9cd5d7b6d602bfa4d2e70f451fd0d
4
+ data.tar.gz: 9611f3c7f26787b466a819a665e01da8ae2da408
5
5
  SHA512:
6
- metadata.gz: 0d108b49421ccd660d71d23cf5980004c0b4e757923d2da478b01f41e85786f32e97ee9ae8aec3f1eaa4869b6cee8275c927a75c7daa8cc3f2318bae134d9bed
7
- data.tar.gz: d1f848944a142bdd5eda86e71b25245054df989170c30451021c8e9860836cb0a94edef92d2a8b7e5f5eca3bdbfefb6d2489b1a6f2bf5c815e58db709c9b8970
6
+ metadata.gz: d5a9b2ec688fd028192ed1dcb454b1332fc2be0097c174c1c9bde408cb87184cb70358ed8e267a6dd3fc43f264dec85b1ebc1952cd8d0e4c024fd81f1c372ac1
7
+ data.tar.gz: 47f99d5a09fb3728b1d221b6d3ed07c20b68bbae7c71a626f6afcb233c68e027bc62ddfaf4e22ab3e5800c0bd3b6061fca15678a5fdc81c9972aa320923609e4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 2.3.3 (January 19th, 2016)
2
+ - BUGFIX: Explicitly specify Jekyll output directory within
3
+ temporary directory
4
+
1
5
  2.3.2 (January 13th, 2016)
2
6
  - Gave stevenson a coke habit
3
7
 
@@ -5,17 +5,19 @@ module Stevenson
5
5
  class Jekyll < Base
6
6
 
7
7
  def output
8
- # Jekyll Build the Directory
9
- command.run(source: directory)
10
-
11
- # Return output directory
12
- File.join(directory, '_site')
8
+ File.join(directory, '_site').tap do |output_directory|
9
+ # Jekyll Build the Directory
10
+ command.run(
11
+ source: directory,
12
+ destination: output_directory
13
+ )
14
+ end
13
15
  end
14
16
 
15
17
  private
16
18
 
17
19
  def command
18
- Cocaine::CommandLine.new("jekyll", "build --source :source")
20
+ Cocaine::CommandLine.new("jekyll", "build --source :source --destination :destination")
19
21
  end
20
22
  end
21
23
  end
@@ -1,3 +1,3 @@
1
1
  module Stevenson
2
- VERSION = "2.3.2"
2
+ VERSION = "2.3.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stevenson
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - RootsRated
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-13 00:00:00.000000000 Z
11
+ date: 2016-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler