質問編集履歴

3

付け足し

2021/03/13 09:38

投稿

naoya0922
naoya0922

スコア23

test CHANGED
File without changes
test CHANGED
@@ -164,6 +164,14 @@
164
164
 
165
165
  ```
166
166
 
167
+ .
168
+
169
+ .
170
+
171
+ .
172
+
173
+ .
174
+
167
175
  gem 'bcrypt', '~> 3.1.7'
168
176
 
169
177
 

2

gemfileを追記します。

2021/03/13 09:38

投稿

naoya0922
naoya0922

スコア23

test CHANGED
File without changes
test CHANGED
@@ -159,3 +159,49 @@
159
159
  参考にしたサイト
160
160
 
161
161
  https://qiita.com/KTakata/items/2e67f7fd73cd4844909e
162
+
163
+
164
+
165
+ ```
166
+
167
+ gem 'bcrypt', '~> 3.1.7'
168
+
169
+
170
+
171
+ # Reduces boot times through caching; required in config/boot.rb
172
+
173
+ gem 'bootsnap', '>= 1.4.4', require: false
174
+
175
+
176
+
177
+ group :development, :test do
178
+
179
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
180
+
181
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
182
+
183
+ end
184
+
185
+
186
+
187
+ group :development do
188
+
189
+ gem 'web-console', '>= 4.1.0'
190
+
191
+ # Display performance information such as SQL time and flame graphs for each request in your browser.
192
+
193
+ gem 'listen', '~> 3.3'
194
+
195
+ gem 'spring'
196
+
197
+ end
198
+
199
+
200
+
201
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
202
+
203
+ gem 'kaminari'
204
+
205
+
206
+
207
+ ```

1

詳細を訂正

2021/03/13 09:37

投稿

naoya0922
naoya0922

スコア23

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,7 @@
1
+ Mac 11.2.3
2
+
3
+
4
+
1
5
  has_secure_passwordを使いたく
2
6
 
3
7
  gem 'bcrypt', '~> 3.1.7'のコメントアウトを外してbundle install ⇨rails sをすると以下のエラーが表示されてしまいます。