You have a problem with your rake: setup device

I am trying to configure a program to be placed gem 'devise' , '1.1.2'in a gemfile and run sudo bundle install, and then try to run rake --trace devise:setup. Then an error is thrown, does anyone know what is wrong with my Rails 3 application?

(in /home/wizztjh/work/testing123)
rake aborted!
Don't know how to build task 'devise:setup'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1728:in `[]'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2050:in `invoke_task'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `each'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2023:in `top_level'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2001:in `run'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1998:in `run'
/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/bin/rake:31
/var/lib/gems/1.8/bin/rake:19:in `load'
/var/lib/gems/1.8/bin/rake:19
+3
source share
1 answer

I think the main problem is that you are not using the appropriate devise installation method. Here are the right generators for developing documentation:

#this installs the devise initializer which is needed to run devise in r3. 
rails generate devise:install

#this generates your model as a devise resource
rails generate devise [MODEL_NAME]

#this copies all the view files into your local app for modifications
rails generate devise:views
+6
source

Source: https://habr.com/ru/post/1774538/


All Articles