summaryrefslogtreecommitdiffstats
path: root/docs/Rakefile
blob: 62b0139ea7e2324c16e75f0456e40f50cd6cacae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
require 'bonsai'
require 'liquid'
require 'maruku'
require 'json'

module ExtraFilters
  def markdownify(input)
    Maruku.new(input).to_html
  end

  def sanitize(input)
    input.gsub(/[^a-zA-Z0-9_]/,"")
  end

  def json(input)
    input.to_json
  end
  
  def unique(input)
    @n = (@n || 0) + 1
    input + @n.to_s
  end
end

Liquid::Template.register_filter(ExtraFilters)


task :serve do
  begin
    Bonsai.log "Press Control+C to quit"
    
    require 'rack'
    require 'sinatra'
    require 'watch'
    require 'launchy'
    
    Bonsai.root_dir = Dir.pwd
    
    server = fork {        
      app = Rack::Builder.app {
        use Bonsai::StaticPassThrough, :root => Bonsai.root_dir + "/output", :urls => ["/"]
        run Bonsai::DevelopmentServer
      }
      Rack::Handler.default.run(app, :Port => 5000) do
        Launchy.open("http://localhost:5000/")
      end
    }    
    Watch.new("{content,templates,public}/**/*") { Bonsai::Exporter.process! }
  rescue Interrupt
    Process.kill("QUIT", server)
    Process.wait(server)
    exit
  end
end

task :build do
  Bonsai.root_dir = Dir.pwd
  Bonsai::Exporter.publish!
end