No commit activity in last 3 years
No release in over 3 years
A CLI for scaffolding a Sinatra application
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 1.0.3
= 2.12.5
= 10.4.2
= 0.9.4
= 0.9.2

Runtime

= 1.2.9
= 0.19.1
 Project Readme

Codeship Status for manuelcorrea/sinatra-scaffolder

Sinatra Scaffolder

A set of tools for creating new webservices with Sinatra. Allows quickly setting up a new project with all of the quality of life things we've found to ease the process of Ruby development even more.

Installation

$ gem install sinatra-scaffolder

Usage

$ sinatra-scaffolder create <project_name>

This will create go through the entire process of creating a new Sinatra project. This includes:

  • Setting up a standard Sinatra folder structure.
  • Creating hello world as an example controller.
  • Setting up the rspec testing framework with a test of hello world.
  • Configuring sinatra-reloader to pick up any file changes and reload the webserver in dev.
  • Initializing a new git repo in the project path.

Run your tests by using $ rake coverage

Run Guard by $ guard

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request