6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ruby on Railsの基本

Posted at

Railsでのアプリ開発はまず土台となるスケルトンから。
railsコマンドを使って最低限必要なファイルを自動的に作成できる。

構成確認:
app/public/script
の3つが良く利用するもの。

app内にアプリのコードの大部分を書く。

publicはアプリケーションの配下で唯一HTTP経由で公開されるフォルダ。
クライアントが直接アクセスする必要があるjavascript/images/htmlなどはここに。

scriptにはスクリプトファイルがある。コードの自動生成やサーバー起動の
ためのものが入っているから削除はダメ!

メモ:
MVCパターン
Model (ビジネスロジック)
View (ユーザーインターフェイス)
Controller (Model&Viewの制御)

Rails (フレームワーク開発)
DRY = Don't Repeat Yourself
CoC = Convention over Configuration

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?