LoginSignup
1
1

More than 5 years have passed since last update.

Rails consoleでModelが読み込まれない

Posted at

rails g models hogeでmodelを作成した場合、作成されるクラスはこんな感じ。

hoge.rb
class Hoge <  ActiveRecord::Base
end

これは当然rails consoleに読み込まれる。

しかし、ActiveRecordを使わない場合、手動でファイルを作成するので、ファイル名とクラス名が一致しなくなることがある。

hage.rb
class Hoge
  include ActiveModel::Model
end

こんな感じ。
こうなるとrailsの規約から外れてしまうのでrails consoleに読み込まれなくなる。
上記は極端な例だが、「tion」と「sion」、「ce」と「se」等で地味にはまることがあるので注意。

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