[Rails] devise를 설치하기만 하면 잠시 중단되는 이야기.

2110 단어 Rails
그냥 아주 평범하게 devise를 설치하고 싶었는데 꽉 차서 메모로 썼어요.
Gemfile에는 다음과 같은 내용이 매우 일반적입니다.
Gemfile
gem 'devise'
bundle install 을 매우 일반적으로 실행합니다.
단말기
$ bundle install
로컬 서버가 시작될 때 다시 시작합니다.
devise 전용 명령을 사용하여 설정 파일을 만듭니다.
단말기
$ rails g devise:install
Running via Spring preloader in process 26467
Could not find generator 'devise:install'. Maybe you meant 'css:assets', 'assets' or 'generator'
Run `rails generate --help` for more options.
무슨 소리야?😫
단말기
$ bundle list
…中略…
* devise (4.7.1)
…中略…
너 있니?
찾아보니 드물다고 하니 이곳을 참고하여 한 번 마운트 해제해 주십시오.
https://qiita.com/kazto/items/63d7b78980ff299de210
단말기
$ bundle exec gem uninstall devise
왠지 모르게
단말기
Select gem to uninstall:
 1. devise-4.6.2
 2. devise-4.7.0
 3. devise-4.7.1
 4. All versions
> 4
Successfully uninstalled devise-4.6.2
Successfully uninstalled devise-4.7.0
Successfully uninstalled devise-4.7.1
내가 너희들을 설치한 것을 기억하지 못하니?😫
일소하다.
스프링을 잠시 멈추다.
단말기
$ spring stop
bundle update 또는 bundle install 및 Gemufile을 실행합니다.lock에서 제거합니다.
단말기
$ bundle update
または
$ bundle install
Gemfile.lock을 확인하고 삭제된 것을 확인한 후에 다시 시작합니다.
Gemfile
gem 'devise' #を最終行に追記
단말기
$ bundle install
단말기
$ rails g devise:install
Running via Spring preloader in process 26751
      create  config/initializers/devise.rb
      create  config/locales/devise.en.yml
길 잃은 데비스 군도 없고...

좋은 웹페이지 즐겨찾기