Sha256: 3c50b1f5e1a393b6004e66a4a81a253117ed1181f320266ad6b0e970d554ab25

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

require 'sinatra/base'
require 'sinatra/assetpack'
require 'sinatra/backbone'
require 'sinatra/support'

require 'compass'
require 'zurb-foundation'

module Helios
  class Frontend < Sinatra::Base
    set :root, File.join(File.dirname(__FILE__), "frontend")

    register Sinatra::CompassSupport
    register Sinatra::AssetPack
    register Sinatra::JstPages
    
    assets do
      serve '/javascripts', from: '/javascripts'
      serve '/stylesheets', from: '/stylesheets'
      serve '/images', from: '/images'

      js :application, '/javascripts/application.js', [
        'javascripts/vendor/jquery.js',
        'javascripts/vendor/underscore.js',
        'javascripts/vendor/backbone.js',
        'javascripts/vendor/backbone.datagrid.js',
        'javascripts/foundation/foundation.js',
        'javascripts/foundation/*',
        'javascripts/helios.js',
        'javascripts/helios/models.js',
        'javascripts/helios/collections.js',
        'javascripts/helios/templates.js',
        'javascripts/helios/views.js',
        'javascripts/helios/router.js',
      ]

      css :application, '/stylesheets/application.css', [
        'stylesheets/screen.css'
      ]
    end

    serve_jst '/javascripts/helios/templates.js'

    get '' do
      redirect request.fullpath + "/"
    end

    get '/' do
      content_type :html

      haml :index
    end
  end
end

module Sinatra
  module AssetPack
    class Package
      def production_path
        add_cache_buster(@path, *files).gsub(/^\//, "")
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
helios-0.0.5 ./lib/helios/frontend.rb