I got tired of running ruby ./bin/rails generate .... command on Windows.
With this script you can just run ./rails.bat generate ...:
- Create file
rails.bat - Paste this code
@echo off
ruby ./bin/rails %*
I got tired of running ruby ./bin/rails generate .... command on Windows.
With this script you can just run ./rails.bat generate ...:
rails.bat@echo off
ruby ./bin/rails %*