From cddabd3fe5bf98064b6cce1958ec70a4e8cc1b0b Mon Sep 17 00:00:00 2001 From: Max De Marzi Date: Fri, 13 Jan 2012 13:41:59 -0600 Subject: [PATCH] trying Neo4j 1.6M03 --- README.rdoc | 2 +- lib/neography/tasks.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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?