[Rails] devise를 설치하기만 하면 잠시 중단되는 이야기.
2110 단어 Rails
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
길 잃은 데비스 군도 없고...
Reference
이 문제에 관하여([Rails] devise를 설치하기만 하면 잠시 중단되는 이야기.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ShYaruki/items/cbd4b8bca71c69014deb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)