LoginSignup
1
4

More than 5 years have passed since last update.

Rails consoleメモ

Last updated at Posted at 2017-04-23

Rails console

Rails consoleとは?

  • rails console(コンソール)とは、rails の環境を読み込んだ状態でrubyコードを実行できるツール。
  • Railsコンソールはirb (IRB: Interactive RuBy) を拡張して作られているため、 Rubyの機能をすべて使うことができる。
  • rails アプリケーション内で定義したメソッドや読み込んでいる gem も実行することができる。

Rails consoleの起動

ターミナルでrails アプリケーションがあるフォルダ(ディレクトリ)に移動したあとに以下のコマンドを打ち込む

$ rails console

終了させたい時は以下を打ち込む

$ exit
1
4
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
1
4