bindata 1.8.3 → 2.0.0

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.

Potentially problematic release.


This version of bindata might be problematic. Click here for more details.

@@ -1,36 +0,0 @@
1
- load_failed = false
2
-
3
- begin
4
- require 'haml'
5
- rescue LoadError
6
- puts "Haml must be installed to build documentation"
7
- load_failed = true
8
- end
9
-
10
- begin
11
- require 'maruku'
12
- rescue LoadError
13
- puts "Maruku must be installed to build documentation"
14
- load_failed = true
15
- end
16
-
17
- begin
18
- require 'syntax'
19
- rescue LoadError
20
- puts "Syntax must be installed to build documentation"
21
- load_failed = true
22
- end
23
-
24
- unless load_failed
25
- file "doc/manual.html" => ["doc/manual.md", "doc/manual.haml"] do |t|
26
- require 'haml/exec'
27
-
28
- opts = Haml::Exec::Haml.new(["doc/manual.haml", "doc/manual.html"])
29
- opts.parse!
30
- end
31
-
32
- CLOBBER.include("doc/manual.html")
33
-
34
- desc "Build the reference manual"
35
- task :manual => "doc/manual.html"
36
- end