오랜만에 IT 블로그입니다... ROR 말은 많이 들어 봤지만... 이제야 접근해 봅니다. 많은 RoR자료가 인터넷에 많습니다... Java,.NET,NODE 등 Web Application의 구조를 대충 안다면 ... 바로 GO 1) 설치 2) Rails command line Utility 리뷰 (REF : http://guides.rubyonrails.org/command_line.html) RoR에 접근한다면 가장 먼저 알아야 할 부분입니다. rails new 새로운 Rails 어플리케이션을 생성하한다. rails new commandsapp rails server rails server 명령어는 Puma 라는 웹서를 실행시킨다. (Puma는 Rails에 번들되어있다.) bin/rails serv..