Skip to content

Commit 8c467b1

Browse files
committed
docs : README - add project info headers & add MVC desc
1 parent d85c4f1 commit 8c467b1

File tree

1 file changed

+39
-4
lines changed

1 file changed

+39
-4
lines changed

README.md

Lines changed: 39 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,44 @@
1-
# README
1+
# Demo Project for Ruby on Rails
2+
간단하게 `Ruby`와 Ruby 언어 기반 Web Application Framework `Rails`를 학습하기 위해 진행하는 데모 프로젝트입니다.
23

3-
This README would normally document whatever steps are necessary to get the
4-
application up and running.
4+
### About MVC Pattern
5+
- Controller : Model & View 연결 매개체
6+
- Model : 어플리케이션 정보/데이터를 다루는 규칙
7+
- View : 데이터 표현과 관련된 Ruby 코드가 삽입되어 있는 HTML 파일
58

6-
Things you may want to cover:
9+
```text
10+
+--------+ +----------+
11+
| |=========(Request)==============>| route.rb |
12+
| | +----------+
13+
| Client | ⬇
14+
| | +----------+ +------------+ +------------+ |----------|
15+
| |<=(Response)==| View | ◀ | Controller | ◀ (Data) ▶ | Model | >===< | Database |
16+
+--------+ +----------+ +------------+ +------------+ |----------|
17+
18+
```
19+
20+
---
21+
22+
## Information
23+
본 데모 프로젝트에 대한 정보입니다.
24+
25+
### Spec
26+
- Ruby Version : ruby 3.2.2
27+
- Rails Version :
28+
- Database
29+
30+
<br/>
31+
32+
### Dependencies
33+
34+
35+
<br/>
36+
37+
### Feature
38+
39+
<br/>
40+
41+
### Run & Test
742

843
* Ruby version
944

0 commit comments

Comments
 (0)