LoginSignup
0
0

More than 1 year has passed since last update.

【ノート】Rails

Last updated at Posted at 2022-08-09

環境構築

windows10

Rails 7

C:\Users\ユーザ名>     

1. Ruby/rbenv のインストール

2. sqlite3 のインストール

https://sqlite.org/download.html
このサイトから2つをインストールして中身をCドライブ直下へコピー
Precompiled Binaries for Windows

  • sqlite-dll-win64-x64-3390400.zip   sqlite3.dll
  • sqlite-tools-win32-x86-3390400.zip  sqlite3.exe
$ sqlite -version

3. Rails7

特徴
  • JavaScriptフロントエンドの大幅な刷新
  • CSS BundlingによるTailwind
  • CSSやPostCSSのサポート
    etc
Ruby対応バージョン

Ruby 2.7.0以上
Ruby 3.1については、Rails 7.0.0では非対応

インストール
gem install rails -v 7.0.3

rubyとrailsのバージョンが不一致

% rails -v
rbenv: rails: command not found

The `rails' command exists in these Ruby versions:
  3.1.1

rails7はruby2.7.0必須、ruby3.0推奨
$ rbenv versions
のコマンドで確認しよう。

0
0
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
0
0