octopress 3.0.1 → 3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 249663e144fb38926a1dfcfc34cac677b64c9e7f
4
- data.tar.gz: 53ce18330fe13d9453d85136dc78e6d42382a751
3
+ metadata.gz: c620865493bba37ab9534283b6da59038cd772ad
4
+ data.tar.gz: aa9b0679ada95ef8a5763d6fb88791afa5c3c01f
5
5
  SHA512:
6
- metadata.gz: ebae011c7c8e715360988ae9283f9d97c66651b51a8cbddf1e04a55a79e3fc10bcd67ab024b912b7e208715b8ba49de2f3c6b90c2a367e3b9b1be9b9cf10d550
7
- data.tar.gz: a66ca39d46c6be80c74f93e319199e32f4adc9e67245be8a42bbecdc5b0a9783ece50c9c2bb3d61e56afcd989e7cae3cd3118baa43d02a52c104b179882d8808
6
+ metadata.gz: 602550b411f0efa7a627f0c39d83b18f8271a9b7990ab1368588d9ecf54f243e4b1c288b1083112545289aaf9cd3e43f9bcccebfb15098ca8df40dac90b1da0c
7
+ data.tar.gz: cabd43ca509316bbf603a1e46985ef458cd9e0331612aecdc05044c3890445939bd2033ab8a43e22ff1e5ae461da042ff4379143e458ca5a9e4a4317e1054546
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ### 3.0.2 (2015-05-06)
4
+ - Fix: Scaffolding path was broken when a configuration didn't have a source setting.
5
+
3
6
  ### 3.0.1 (2015-05-05)
4
7
  - Fix: Now template scaffolding is installed at the configured Jekyll site source.
5
8
 
@@ -18,7 +18,9 @@ module Octopress
18
18
  # Add template to source directory
19
19
  if File.exist?(config_file)
20
20
  config = SafeYAML.load_file(config_file)
21
- path = File.join(path, config['source'])
21
+ if config['source']
22
+ path = File.join(path, config['source'])
23
+ end
22
24
  end
23
25
  path
24
26
  end
@@ -1,3 +1,3 @@
1
1
  module Octopress
2
- VERSION = "3.0.1"
2
+ VERSION = "3.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis