Sha256: 81c02452af9a36fe00a273c61af84502bed1c37de0ae4a0e6b193c7681bf0348

Contents?: true

Size: 822 Bytes

Versions: 11

Compression:

Stored size: 822 Bytes

Contents

$:.unshift File.dirname(__FILE__)
require 'rubygems'
require 'sinatra/base'
require 'erb'
require 'json'
require 'rhosync_api'

module RhosyncConsole  
  class << self
    ROOT_DIR = File.dirname(File.expand_path(__FILE__)) unless defined? ROOT_DIR

    def root_path(*args)
      File.join(ROOT_DIR, *args)
    end
  end  

  class Server < Sinatra::Base
    set :views,  RhosyncConsole::root_path("app","views")
    set :public, RhosyncConsole::root_path("app","public")
    set :static, true    
    use Rack::Session::Cookie
    before do
      headers['Expires'] = 'Sun, 19 Nov 1978 05:00:00 GMT'
      headers['Cache-Control'] = 'no-store, no-cache, must-revalidate'  
      headers['Pramga'] = 'no-cache'
    end
    
  end
end

Dir[File.join(File.dirname(__FILE__),"app/**/*.rb")].each do |file|
  require file
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rhosync-2.1.11 lib/rhosync/console/server.rb
rhosync-2.1.10 lib/rhosync/console/server.rb
rhosync-2.1.7 lib/rhosync/console/server.rb
rhosync-2.1.6 lib/rhosync/console/server.rb
rhosync-2.1.3 lib/rhosync/console/server.rb
rhosync-2.1.2 lib/rhosync/console/server.rb
rhosync-2.1.1 lib/rhosync/console/server.rb
rhosync-2.1.0 lib/rhosync/console/server.rb
rhosync-2.1.0.beta.2 lib/rhosync/console/server.rb
rhosync-2.1.0.beta.1 lib/rhosync/console/server.rb
rhosync-2.0.9 lib/rhosync/console/server.rb