Zacząłem ostatnio naukę railsów z książki:
https://helion.pl/ksiazki/ruby-on-rails-tworzenie-aplikacji-www-john-elder,rrtwww.htm
W jednym z rozdziałów wykorzystywany jest gem Devise(https://rubygems.org/gems/devise)
W pliku Gemfile mam:
gem 'devise', '~> 4.4', '>= 4.4.1'
Do instalacji gemów wykorzystuję polecenie bundle install. Gdy użyję tego polecenia w terminalu pojawia się prośba o jakieś hasło tylko nie wiem do czego a w książce nie ma nic o tym. Logi:
user@user:~/kpir$ bundle install
Fetching gem metadata from https://rubygems.org/...........
Fetching version metadata from https://rubygems.org/...
Fetching dependency metadata from https://rubygems.org/..
Resolving dependencies....
Using rake 12.0.0
Using i18n 0.7.0
Using minitest 5.10.3
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using nokogiri 1.8.0
Using rack 1.6.4
Using mime-types-data 3.2015.1120
Using arel 6.0.3
Using bundler 1.15.1
Using thor 0.19.4
Using concurrent-ruby 1.0.5
Using sqlite3 1.3.13
Using sass 3.4.23
Using tilt 2.0.1
Using execjs 2.6.0
Using json 1.8.3
Using coffee-script-source 1.10.0
Using multi_json 1.12.1
Using rdoc 4.2.1
Fetching bcrypt 3.1.11
Your user account isn't allowed to install to the system RubyGems.
You can cancel this installation and run:
bundle install --path vendor/bundle
to install the gems into ./vendor/bundle/, or you can enter your password
and install the bundled gems to RubyGems using sudo.
Password:
O co chodzi i jak zainstalować ten gem?