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
- Host: GitHub
- URL: https://github.com/emilio2hd/rails_template
- Owner: emilio2hd
- License: mit
- Created: 2021-06-01T17:47:04.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-20T12:49:10.000Z (almost 5 years ago)
- Last Synced: 2025-04-06T01:22:23.019Z (about 1 year ago)
- Topics: factory-bot, ffaker, rails, rails-template, rspec, rubocop, simplecov
- Language: Ruby
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rails_template
An simple rails template
[](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
```