We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5076bf8 commit f4ed7f7Copy full SHA for f4ed7f7
Gemfile
@@ -18,6 +18,7 @@ gem 'sass-rails', '~> 5.0'
18
gem 'uglifier', '>= 1.3.0'
19
# See https://github.com/rails/execjs#readme for more supported runtimes
20
# gem 'therubyracer', platforms: :ruby
21
+gem 'faker', "1.7.2"
22
23
# Use jquery as the JavaScript library
24
gem 'jquery-rails'
db/seeds.rb
@@ -16,6 +16,16 @@
16
User.create(user_info)
17
end
+1.times do
+ user_info = {
+ name: Ken,
+ email: ken@gmail.com,
+ password: "password",
+ is_ken: true
25
+ }
26
+ User.create(user_info)
27
+end
28
+
29
# Recipes
30
75.times do
31
recipe_info = {
0 commit comments