중고 신입이 개발해보기..

Rails 영상] 기본 블로그만들기 본문

Back-End /Ruby On Rails

Rails 영상] 기본 블로그만들기

rootkaien 2018. 11. 29. 11:42


기초적인 레일즈로 블로그를 만드는 유투브영상이다. 


https://youtu.be/-URZh6iL8gk




아주 간단한 블로그제작기이당 .. 



사용된 Gem


# Provides a better error page for Rails and other Rack apps.
gem 'better_errors', '~> 2.5'

# Forms made easy!
gem 'simple_form', '~> 4.1'

# github bulma-rails 에서 말해는 버전으로 설치.. 잘 나옴..
gem "bulma-rails", "~> 0.7.2"


group :development do
# Guard is a command line tool to easily handle events on file system modifications.
gem 'guard', '~> 2.15'
# Guard::LiveReload automatically reloads your browser when 'view' files are modified.
gem 'guard-livereload', '~> 2.5', '>= 2.5.2'

end


bulma css를 사용하여서 블로그를 꾸미



'Back-End > Ruby On Rails' 카테고리의 다른 글

Ruby On Rails : Model  (0) 2019.03.05
이미지업로드 Gem Carrierwave  (0) 2018.12.05
rails 토큰 만들기.  (0) 2018.11.23
Rails Routes 설명  (0) 2018.10.17
Rails 유용한 Gem  (0) 2018.09.06
Comments