Home파일 작성
미리 home을 만들고 시작하는것이 좋겠죠?
우선 프로젝트 폴더안에 home 컨트롤러와 home html 파일을 생성합니다.
$ rails g controller home index
Gem 설치
Gemfile 안에 다음 문구를 추가해 줍니다.
gem 'bootstrap'
다음에 bundle install을 해줍니다.
$ bundle install
그리고 아래의 경로의 파일로 들어가서
부트스트랩을 임포트 해줍니다.
(@import "bootstrap";)
Import Bootstrap styles in app/assets/stylesheets/application.scss
그 후 application.scss 파일이 application.css로 되어 있다면
파일 명을 scss로 수정해 줍니다.
제이쿼리가 설치가 되어있는지 확인 후 안되어 있으면
젬파일 안에 추가 후 번들 인스톨 해줍니다.
gem 'jquery-rails'
그 담에 아래의 경로의 파일에 들어가
그다음의 문장을 추가해 줍니다.
Add Bootstrap dependencies and Bootstrap to your application.js
:
//= require jquery3 //= require popper //= require bootstrap-sprockets
'Back_end > Ruby' 카테고리의 다른 글
[ Gem ] simple_calendar (0) | 2018.07.27 |
---|---|
[ Gem] Devise (0) | 2018.05.21 |