rails-template/rspec
2023-01-02 09:53:24 +03:00
..
helpers Add readme 2023-01-02 09:53:24 +03:00
rails_helper.rb Initial commit 2022-12-19 17:27:35 +03:00
README.md Add readme 2023-01-02 09:53:24 +03:00
spec_helper.rb Initial commit 2022-12-19 17:27:35 +03:00

DIT RUBY TEMPLATE

This is a template for a Rails project.

Instructions

  1. create a new rails app with the template flag like below:
rails new --api your_app_name --template www.github.com/ditkrg/ruby-template/template.rb

Arguments

This template by default will create a new rails app with the following:

  • postgresql
  • rspec
  • gemset
  • dotenv
  • docker
  • docker-compose
  • if you want to skip any of the above, you can pass the following arguments:
- postgres: --skip-postgres
- rspec: --skip-rspec
- gemset: --skip-gemset
- dotenv: --skip-dotenv
- docker: --skip-docker
- docker-compose: --skip-docker-compose