html-pipeline 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.0.8
4
+
5
+ * raise LoadError instead of printing to stderr if linguist is missing. gjtorikian #36
6
+
3
7
  ## 0.0.7
4
8
 
5
9
  * optionally require github-linguist chrislloyd #33
@@ -1,8 +1,7 @@
1
1
  begin
2
2
  require 'linguist'
3
3
  rescue LoadError
4
- $stderr.puts "You need to install linguist before using the SyntaxHighlightFilter. See README.md for details"
5
- exit 1
4
+ raise LoadError, "You need to install linguist before using the SyntaxHighlightFilter. See README.md for details"
6
5
  end
7
6
 
8
7
  module HTML
@@ -1,5 +1,5 @@
1
1
  module HTML
2
2
  class Pipeline
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-pipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-01-30 00:00:00.000000000 Z
13
+ date: 2013-02-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: gemoji