3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【個人メモ】Ruby on Rails チュートリアル 第1章

Posted at

Ruby on Railsチュートリアルで学んだ内容を個人的なメモとして簡単にまとめたものです

個人メモ

  • Ruby on Railsチュートリアルにおける開発環境
    github codespacesのクラウドIDE
  • バージョンの確認
    ruby --version
    rails -v
  • rubyドキュメントをスキップする設定を.gemrcに追加
    echo "gem: --no-document" >> ~/.gemrc
  • バージョンを指定しrailsをインストール
    gem install rails -v 7.0.4.3
  • gemのバージョン指定方法
    gem "capybara", ">= 3.26"
    gem "puma", "~> 5.0"

">= 3.26"という記法では最新のgemを探してインストール
"~> 5.0"という記法ではバージョン5.1などの新しいマイナーバージョンがあればインストールされるが、バージョン6.0のようなメジャーバージョンアップはインストールされない ~>の方が安全度が高い

  • gemのインストール
    bundle install
  • サーバーの起動
    rails server
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?