0

I got following warning while installing fedena , how do I fix it

  rake/rdoctask is deprecated.  Use rdoc/task instead (in RDoc 2.4.2+)
    WARNING: Global access to Rake DSL methods is deprecated.  Please include
        ...  Rake::DSL into classes and modules which use the Rake DSL methods.
    WARNING: DSL method Spec::Rake::SpecTask#task called at C:/Fedena/lib/tasks/rspe
    c.rake:28:in `initialize'
Tachyons
  • 2,131
  • 1
  • 21
  • 35

2 Answers2

0

I had recently installed Fedena. The command "bundle exec rake db:create" worked for me! Glad to provide more info if needed!

0

1. Go to rakefile

change require 'rake/rdoctask'

to require 'rdoc/task'

2. Go to Gemfile

add gem 'rdoc'

3. run Bundle

Ryan.lay
  • 1,741
  • 2
  • 17
  • 30