An open API service indexing awesome lists of open source software.

https://github.com/emilio2hd/rails_template

Application rails template
https://github.com/emilio2hd/rails_template

factory-bot ffaker rails rails-template rspec rubocop simplecov

Last synced: about 1 month ago
JSON representation

Application rails template

Awesome Lists containing this project

README

          

# rails_template
An simple rails template

[![rails_template](https://circleci.com/gh/emilio2hd/rails_template.svg?style=shield)](https://github.com/emilio2hd/rails_template)

# What's inside the box?

Some basic stuff used in development, like: byebug, rubocop, dotenv and pry.

And testing stuff, like: rspec, factory_bot, database_cleaner, ffaker, shoulda-matchers and simplecov.

Generates rubocop files using `--auto-gen-config` option.

# How to use it
On creating a new app
```
rails new new_app \
-d postgresql \
-m /template.rb
```

On ~/.railsrc
```
--database=postgresql
--template=/template.rb
```