
My Ruby on Rails application templates
The application templates for Ruby on Rails, created by iiska, offer a convenient way to set up a new Rails project with a collection of useful features and configurations. By copying the railsrc file to your home directory and running the rails new command, you can easily generate a new Rails app with pre-configured settings. This template includes various gems like bullet, brakeman, pry, rspec, simplecov, factory_girl_rails, and rubocop, which provide functionality for N+1 query detection, security scanning, powerful IRB shell replacement, testing with RSpec, test coverage reporting, factories instead of fixtures, and static code analysis and style enforcement. Additionally, the template sets up a Docker configuration for running the development environment and creates a default Docker Compose environment with dockerized PostgreSQL server for development and testing databases.
The application templates provided by iiska for Ruby on Rails simplify the process of setting up a new Rails project with pre-configured features and configurations. With the ability to copy the railsrc file to your home directory and run the rails new command, you can quickly generate a new Rails app with essential gems like bullet, brakeman, pry, rspec, simplecov, factory_girl_rails, and rubocop. Additionally, the template includes Docker configuration for the development environment and creates a Docker Compose environment with dockerized PostgreSQL server for development and testing databases. These templates offer a convenient and efficient way to bootstrap a Ruby on Rails project with useful tools and configurations.
