neo4j-community 1.8.M06-java → 1.8.M07-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -1,7 +1,14 @@
1
1
  require "bundler/gem_tasks"
2
2
 
3
+ def download_folder
4
+ abort "Please create a #{File.expand_path('tmp')} folder and copy the neo4j community gz/tar file downloaded from http://neo4j.org/download" unless File.directory?('tmp')
5
+ Dir.new('tmp')
6
+ end
7
+
3
8
  def tar_file
4
- Dir.new('tmp').entries.find { |x| x =~ /gz$/ || x =~ /tar$/}
9
+ download_folder.entries.find { |x| x =~ /gz$/ || x =~ /tar$/}.tap do |f|
10
+ abort "expected a neo4j .gz/.tar file in folder #{File.expand_path(download_folder.path)}" unless f
11
+ end
5
12
  end
6
13
 
7
14
  def source_file
@@ -9,8 +16,7 @@ def source_file
9
16
  end
10
17
 
11
18
  def unpack_lib_dir
12
- file = tar_file
13
- dir = file.gsub('-unix.tar.gz', '')
19
+ dir = tar_file.gsub('-unix.tar.gz', '')
14
20
  dir = dir.gsub('-unix.tar', '')
15
21
  File.expand_path("./tmp/#{dir}/lib")
16
22
  end
@@ -24,7 +30,6 @@ task :delete_old_jar do
24
30
  root = File.expand_path("./lib/neo4j-community/jars")
25
31
  files = Dir.new(root).entries.find_all{|f| f =~ /\.jar/}
26
32
  files.each do |file|
27
- puts "Delete #{file}"
28
33
  system "git rm #{root}/#{file}"
29
34
  end
30
35
  end
@@ -1,7 +1,7 @@
1
1
  module Neo4j
2
2
  module Community
3
- VERSION = "1.8.M06"
4
- NEO_VERSION = "1.8.M06"
3
+ VERSION = "1.8.M07"
4
+ NEO_VERSION = "1.8.M07"
5
5
  end
6
6
  end
7
7
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: neo4j-community
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 4
5
- version: 1.8.M06
5
+ version: 1.8.M07
6
6
  platform: java
7
7
  authors:
8
8
  - Dmytrii Nagirniak
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2012-08-05 00:00:00 Z
14
+ date: 2012-08-13 00:00:00 Z
15
15
  dependencies: []
16
16
 
17
17
  description: "The Java Jar files for the Neo4j Community, a high performance, fully ACID transactional graph database \xE2\x80\x93 licensed under the GPL, see license - http://neo4j.org/licensing-guide/ "
@@ -32,17 +32,17 @@ files:
32
32
  - lib/neo4j-community.rb
33
33
  - lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
34
34
  - lib/neo4j-community/jars/lucene-core-3.5.0.jar
35
- - lib/neo4j-community/jars/neo4j-cypher-1.8.M06.jar
36
- - lib/neo4j-community/jars/neo4j-graph-algo-1.8.M06.jar
37
- - lib/neo4j-community/jars/neo4j-graph-matching-1.8.M06.jar
38
- - lib/neo4j-community/jars/neo4j-jmx-1.8.M06.jar
39
- - lib/neo4j-community/jars/neo4j-kernel-1.8.M06.jar
40
- - lib/neo4j-community/jars/neo4j-lucene-index-1.8.M06.jar
41
- - lib/neo4j-community/jars/neo4j-shell-1.8.M06.jar
42
- - lib/neo4j-community/jars/neo4j-udc-1.8.M06.jar
35
+ - lib/neo4j-community/jars/neo4j-cypher-1.8.M07.jar
36
+ - lib/neo4j-community/jars/neo4j-graph-algo-1.8.M07.jar
37
+ - lib/neo4j-community/jars/neo4j-graph-matching-1.8.M07.jar
38
+ - lib/neo4j-community/jars/neo4j-jmx-1.8.M07.jar
39
+ - lib/neo4j-community/jars/neo4j-kernel-1.8.M07.jar
40
+ - lib/neo4j-community/jars/neo4j-lucene-index-1.8.M07.jar
41
+ - lib/neo4j-community/jars/neo4j-shell-1.8.M07.jar
42
+ - lib/neo4j-community/jars/neo4j-udc-1.8.M07.jar
43
43
  - lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
44
44
  - lib/neo4j-community/jars/scala-library-2.9.1-1.jar
45
- - lib/neo4j-community/jars/server-api-1.8.M06.jar
45
+ - lib/neo4j-community/jars/server-api-1.8.M07.jar
46
46
  - lib/neo4j-community/test-jars/neo4j-kernel-1.7.1-tests.jar
47
47
  - lib/neo4j-community/version.rb
48
48
  - lib/neo4j-community/version.rb.orig
@@ -74,6 +74,6 @@ rubyforge_project: neo4j-community
74
74
  rubygems_version: 1.8.15
75
75
  signing_key:
76
76
  specification_version: 3
77
- summary: The neo4j Community edition v1.8.M06 JAR files
77
+ summary: The neo4j Community edition v1.8.M07 JAR files
78
78
  test_files: []
79
79