29
29

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 5 years have passed since last update.

Fakerでダミーデータを作成

Posted at
GemFile
group :development, :test do
  gem 'faker'
  gem 'faker-japanese'
end
bundle install
require 'faker/japanese'

# 名前
p Faker::Japanese::Name.name
# 姓
p Faker::Japanese::Name.last_name
# 名
p Faker::Japanese::Name.first_name
# メールアドレス
p Faker::Internet.email
# ユーザ名
p Faker::Internet.user_name

# 住所、社名なんかもあるけど英語のみ
29
29
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
29
29

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?