diff --git a/README.rdoc b/README.rdoc index 0368071..5f86cad 100644 --- a/README.rdoc +++ b/README.rdoc @@ -43,7 +43,7 @@ Just add gem 'neography' to your Gemfile and run bundle install. The following tasks will be available to you: rake neo4j:install # Install Neo4j to the neo4j directory under your project - rake neo4j:install[community,1.6.M02] # Install Neo4j Community edition, version 1.6.M02 + rake neo4j:install[community,1.6.M03] # Install Neo4j Community edition, version 1.6.M03 rake neo4j:install[advanced,1.5] # Install Neo4j Advanced edition, version 1.5 rake neo4j:install[enterprise,1.5] # Install Neo4j Enterprise edition, version 1.5 rake neo4j:start # Start Neo4j diff --git a/lib/neography/tasks.rb b/lib/neography/tasks.rb index 34b4fe0..348a173 100644 --- a/lib/neography/tasks.rb +++ b/lib/neography/tasks.rb @@ -4,7 +4,7 @@ namespace :neo4j do desc "Install Neo4j" task :install, :edition, :version do |t, args| - args.with_defaults(:edition => "community", :version => "1.6.M02") + args.with_defaults(:edition => "community", :version => "1.6.M03") puts "Installing Neo4j-#{args[:edition]}-#{args[:version]}" if OS::Underlying.windows?