No commit activity in last 3 years
No release in over 3 years
Quick Sinatra app setup
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
>= 0
~> 2.14.0
~> 0.6

Runtime

~> 0.14
 Project Readme

Sinatra Bootstrap

Get a skeleton sinatra app up and running before you finish wishing you had an idea

Install

gem install sinatra_bootstrap

Usage

Sinatra-only application

take_the_stage sinatra

Wow, that was easy. take_the_stage sinatra will generate a Gemfile specifying only gem 'sinatra', '~> 1.3' as well as a main.rb file to hold your application.

Rack application

take_the_stage sinatra --rackup

The rackup variant will also generate a config.ru file suitable for deploying your application on a Rack-based server.

The optional pow variant may be added to generate a tmp/always_restart.txt to configure pow.cx to restart the server after each request.

Heroku

take_the_stage heroku

When passed heroku sinatra bootstrap will generate a more complete Gemfile containing thin, heroku, and foreman. It also outputs a simple config.ru and Procfile