Sha256: bc658429c27345b82dba96622dfef2b5c148f6f5ec9946072fc1a5127ed4208c
Contents?: true
Size: 955 Bytes
Versions: 2
Compression:
Stored size: 955 Bytes
Contents
module Raddocs class App < Sinatra::Base set :haml, :format => :html5 set :root, File.join(File.dirname(__FILE__), "..") get "/" do index = JSON.parse(File.read("#{docs_dir}/index.json")) haml :index, :locals => { :index => index } end get "/*" do file = "#{docs_dir}/#{params[:splat][0]}.json" if !File.exists?(file) raise Sinatra::NotFound end file_content = File.read(file) example = JSON.parse(file_content) haml :example, :locals => { :example => example } end not_found do "Example does not exist" end helpers do def link_to(name, link) %{<a href="#{request.env["SCRIPT_NAME"]}#{link}">#{name}</a>} end def url_location request.env["SCRIPT_NAME"] end def api_name Raddocs.configuration.api_name end end def docs_dir Raddocs.configuration.docs_dir end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
raddocs-0.1.4 | lib/raddocs/app.rb |
raddocs-0.1.3 | lib/raddocs/app.rb |