私はモンゴイドを使用しようとしていますが、このエラーが出力されます:
初期化されていない定数 'Mongo'
これが私のコードです:
require "mongoid"
Mongoid.configure do |config|
config.master = Mongo::Connection.new("localhost",27017).db("arthist")
end
class Artist
include Mongoid::Document
field :name, type: String
end
a = Artist.create(name: "hoge")
何か考えはありますか?