Frage

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'

Keine korrekte Lösung

Andere Tipps

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

1. Go to rakefile

change require 'rake/rdoctask'

to require 'rdoc/task'

2. Go to Gemfile

add gem 'rdoc'

3. run Bundle

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top