#Sinatra Template
A nice little sinatra template which uses to following stuff
- bundler
- thin for development & a example unicorn config
- rspec, capybara, mocha
- guard setup with rspec, compass, livereload
- capistrano incl. a example deploy config
- rack-flash
- haml
- compass + susy + default layout & stylesheet (inpired by HTML5 Boilerplate)
##directly create a app with this line
## to create the app within the folder sinatra-template do
wget https://raw.github.com/sch1zo/sinatra-template/master/install.sh -O - | sh
## or
curl https://raw.github.com/sch1zo/sinatra-template/master/install.sh | sh
## to give the folder a different name do this
wget https://raw.github.com/sch1zo/sinatra-template/master/install.sh && sh install.sh APP_NAME && rm install.sh
## or use the little wizard
wget https://raw.github.com/sch1zo/sinatra-template/master/install.sh && sh install.sh && rm install.sh
###Notes
- the install script will simply pick up the current ruby to install and run bundler
- autoinstall will probably only work with rbenv, rvm or similar, cause they normally don't need sudo for that
##meta
sch1zo