How To Create A Project

  1. Download this railsrc file into the folder within which you plan to generate new Rails projects.

  2. Generate your new projects using the railsrc file:

    rails new fun_project --rc=fd

You can peruse the railsrc file and the template that it invokes to get a sense of what it is doing.

Primarily, it adds some gems that we want to include in all projects, and it gets the project ready for rails gradeing.

If there are other things that we ought to be including in projects out of the box, please create an issue or a PR.

Last updated