guard-jekyll-plus 1.4.2 → 1.4.3

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.
data/CHANGELOG.md CHANGED
@@ -56,3 +56,7 @@ New config options
56
56
 
57
57
  - Unescape URLs in Rack (support for non-ASCII URLs)
58
58
 
59
+ ### 1.4.3
60
+
61
+ - Removed some debugging output
62
+
data/README.md CHANGED
@@ -2,12 +2,15 @@
2
2
 
3
3
  A Guard plugin for smarter Jekyll watching.
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/guard-jekyll-plus.png)](http://badge.fury.io/rb/guard-jekyll-plus)
6
+
5
7
  Features:
6
8
 
7
9
  - Changing static files won't trigger a jekyll build! Files are copied/removed instead.
8
10
  - Batched processing! (Adding a directory of `n` files triggers a single build)
9
11
  - Reads options from your YAML config file(s)
10
12
  - Supports multiple config files (Jekyll 1.0)
13
+ - Serve with Jekyll or Rack (just add rack to your gemfile)
11
14
  - Clear and colorized output
12
15
 
13
16
  Here's a look
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  class JekyllPlusVersion
3
- VERSION = "1.4.2"
3
+ VERSION = "1.4.3"
4
4
  end
5
5
  end
@@ -217,10 +217,9 @@ module Guard
217
217
  def rack_config(root)
218
218
  ENV['RACK_ROOT'] = root
219
219
  default_config = File.expand_path("../rack/config.ru", File.dirname(__FILE__))
220
- local_config = File.exist? 'config.ru' ? 'config.ru' : nil
220
+ local_config = File.exist?('config.ru') ? 'config.ru' : nil
221
221
 
222
222
  config = (@config['rack_config'] || local_config || default_config)
223
- puts config
224
223
  { :config => config, :Port => @config['port'], :Host => @config['host'] }
225
224
  end
226
225
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-jekyll-plus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: