Created
March 21, 2012 03:14
-
-
Save mbleigh/2143990 to your computer and use it in GitHub Desktop.
Non-Rails Rackup with Sprockets, Compass, Handlebars, Coffeescript, and Twitter Bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass" | |
@import "bootstrap" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#= require bootstrap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler' | |
Bundler.setup :default, (ENV['RACK_ENV'] || 'development') | |
require 'sprockets' | |
require 'compass' | |
require 'sprockets-sass' | |
require 'bootstrap-sass' | |
require 'handlebars_assets' | |
require 'coffee-script' | |
map '/assets' do | |
environment = Sprockets::Environment.new | |
environment.append_path 'assets/javascripts' | |
environment.append_path 'assets/stylesheets' | |
environment.append_path 'assets/templates' # for Handlebars templates | |
environment.append_path HandlebarsAssets.path | |
# Adds Twitter Bootstrap Javascripts | |
environment.append_path Compass::Frameworks['bootstrap'].templates_directory + '/../vendor/assets/javascripts' | |
run environment | |
end | |
run lambda{|env| [200, {}, ['Put your app here.']]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
gem 'sprockets' | |
gem 'sprockets-sass' | |
gem 'sass' | |
gem 'compass' | |
gem 'bootstrap-sass' | |
gem 'handlebars_assets' | |
gem 'coffee-script' |
Can you add the app structure tree so that the above path makes much more sense?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very useful!!! thanks for share.
Another good idea is to add coffeescript, right? :D