前回の記事でアプリを作成したらライブラリを導入する。
ライブラリとはGemの事で、開発を迅速に進めるための拡張機能。備忘録として残す。
Gemfileの中にアプリで使う名前、バージョンを管理。
ファイルに記載したらターミナルにて bundle install をする。
Gemfile
# Use mysql as the database for Active Record
gem 'mysql2', '0.5.3' 追加
.
.
.
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'pry-rails' 追加
追加後、bundle update
今回はすでにあるバージョンの更新のため update
rails s をし起動すればOK