1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Fakerについて

Last updated at Posted at 2021-01-28

#目次
①Fakcerとは
②Fakerの使い方

##①Fakcerとは
ダミーデータを自動で作成してくれるもの。

##②Fakerの使い方
1.Gemfileにfakerを記述

Gemfile
 gem 'faker'
ターミナル
 bundle install

2.seeds.rbにダミーデータを作成できるように記述する(こちらを参考に)

seeds.rb

 50.times do |n|
  email = Faker::Internet.email
  password = "password"
  User.create!(name: name,email: email, password: password,password_confirmation: password)
end

3.ターミナルにてデータを生成する

ターミナル
 rails db:seed

以上

◯補足
seeds.rbとは、初期データを生成してくれるファイルのこと。このファイルにデータを生成するコードを書いておくだけで、アプリにデータを備えさせることができる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?