Я следую этой инструкции "Начало работы с Neo4j и Ruby", https://neo4j.com/developer/ruby-course/.
Вот как вы настроите свое приложение Rails на портале ресурсов:
rails new asset_portal -m http://neo4jrb.io/neo4j/neo4j.rb -O
cd asset_portal
rake neo4j:install[community-latest]
rake neo4j:start
Но после того, как я бегу
rake neo4j:install[community-latest]
Я получил эту записку
The `neo4j-rake_tasks` gem is no longer a dependency of the `neo4j-core` gem.
If you would like to use the rake tasks, you will need to explicitly include the `neo4j-rake_tasks` gem in your project.
Please note that the `neo4j-rake_tasks` gem is only for development and test environments (NOT for production).
Be sure to require the `neo4j-rake_tasks` gem AFTER the `neo4j-core` and `neo4j` gems.
For more details see the Neo4j.rb documentation
Что я могу сделать сейчас, чтобы сделать это заявление, rake neo4j: установить [community-latest] , работать?
Спасибо!