0
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 1 year has passed since last update.

devise(デバイス)の使い方

Posted at

本日はdevise(デバイス)の使い方について投稿します!

○devise(デバイス)とは

Railsアプリケーションサービスで使われているgemの一つ。
このdeviseがあれば簡単にユーザー管理機能が実装出来る便利なもの。

devise(デバイス)の設定方法

まずGemfileというファイルの一番下に

gem 'devise'

と記述します。

その後にターミナルに

% bundle install

と記述するとインストール完了です。
※インストールした後は反映させる為に一度control + Cでリセットしておきましょう!

次に必要なファイルを作成する為に

% rails g devise:install

と記述するとファイル必要なファイルがまとめて作られます。

次はdevise(デバイス)のモデルを作ります。
ユーザーを管理するモデルなのでuserモデルを作ります。

% rails g devise user

これでuserモデルが作成されました。

ちなみにconfig/routes.rbの中に

  devise_for :users

この記述がされていればちゃんと登録されている証拠になります。

今日はここまで!次回はdevise(デバイス)のテーブル作成に関して詳しく投稿していきます。
ありがとう御座いました!!

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