Railsの公式でサポートされているアプリケーションテンプレートの機能を使って、Railsの初期化をします。
- Macの方
- Windowsの方
1.Macの方
$ cd # アプリケーションを作りたいディレクトリ
$ rails new @app_name -m https://raw.githubusercontent.com/ttexan1/rails_template/master/template.rb
@app_nameを自分のアプリケーションの名前に変更してください
2.Windowsの方
$ git clone https://github.com/ttexan1/rails_template.git
$ atom .
template.rb
def get_remote(src, dest = nil)
dest ||= src
repo = '/Users/{your_directory}/rails_template/files/' <=ここを正しいパスに編集しなければいけない
remote_file = repo + src
remove_file dest
get(remote_file, dest)
end
# アプリ名の取得
@app_name = app_name
# 以下略
$ cd # アプリケーションを作りたいディレクトリ
$ rails new @app_name -m ~/{your_directory}/rails_template/template_windows.rb