neo4j-community 1.9.5-java → 2.0.0-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.
Files changed (27) hide show
  1. data/README.md +2 -2
  2. data/Rakefile +17 -4
  3. data/lib/neo4j-community/jars/neo4j-cypher-2.0.0.jar +0 -0
  4. data/lib/neo4j-community/jars/neo4j-cypher-commons-2.0.0.jar +0 -0
  5. data/lib/neo4j-community/jars/neo4j-cypher-compiler-1.9-2.0.0.jar +0 -0
  6. data/lib/neo4j-community/jars/neo4j-cypher-compiler-2.0-2.0.0.jar +0 -0
  7. data/lib/neo4j-community/jars/neo4j-graph-algo-2.0.0.jar +0 -0
  8. data/lib/neo4j-community/jars/neo4j-graph-matching-2.0.0.jar +0 -0
  9. data/lib/neo4j-community/jars/neo4j-jmx-2.0.0.jar +0 -0
  10. data/lib/neo4j-community/jars/neo4j-kernel-2.0.0.jar +0 -0
  11. data/lib/neo4j-community/jars/neo4j-lucene-index-2.0.0.jar +0 -0
  12. data/lib/neo4j-community/jars/neo4j-udc-2.0.0.jar +0 -0
  13. data/lib/neo4j-community/jars/parboiled-core-1.1.6.jar +0 -0
  14. data/lib/neo4j-community/jars/parboiled-scala_2.10-1.1.6.jar +0 -0
  15. data/lib/neo4j-community/jars/{scala-library-2.10.0.jar → scala-library-2.10.3.jar} +0 -0
  16. data/lib/neo4j-community/jars/server-api-2.0.0.jar +0 -0
  17. data/lib/neo4j-community/test-jars/neo4j-kernel-2.0.0-tests.jar +0 -0
  18. data/lib/neo4j-community/version.rb +2 -2
  19. metadata +24 -13
  20. data/lib/neo4j-community/jars/neo4j-cypher-1.9.5.jar +0 -0
  21. data/lib/neo4j-community/jars/neo4j-graph-algo-1.9.5.jar +0 -0
  22. data/lib/neo4j-community/jars/neo4j-graph-matching-1.9.5.jar +0 -0
  23. data/lib/neo4j-community/jars/neo4j-jmx-1.9.5.jar +0 -0
  24. data/lib/neo4j-community/jars/neo4j-kernel-1.9.5.jar +0 -0
  25. data/lib/neo4j-community/jars/neo4j-lucene-index-1.9.5.jar +0 -0
  26. data/lib/neo4j-community/jars/neo4j-udc-1.9.5.jar +0 -0
  27. data/lib/neo4j-community/jars/server-api-1.9.5.jar +0 -0
data/README.md CHANGED
@@ -5,7 +5,7 @@ This gem provides a set of jar files of the Neo4j Graph Database.
5
5
 
6
6
  To use it: `require 'neo4j-community'`
7
7
 
8
- It can be used directly but the intention is to use it with [neo4j.rb](https://github.com/andreasronge/neo4j).
8
+ It does also include test jars (neo4j impermanent db) which are loaded by `Neo4j::Community.load_test_jars!`
9
9
 
10
10
  How to Release
11
11
  ==================================================
@@ -29,5 +29,5 @@ License
29
29
 
30
30
  This gem is MIT licensed.
31
31
 
32
- However the jars included are licensed by [Neo4j](http://neo4j.orb).
32
+ However the jars included are licensed by [Neo4j](http://neo4j.org).
33
33
 
data/Rakefile CHANGED
@@ -50,14 +50,27 @@ task :delete_old_jar do
50
50
  end
51
51
  end
52
52
 
53
+ def version
54
+ @version ||= tar_file.match(/\d.\d.([^-]*)/)[0]
55
+ end
56
+
57
+ task :test_jar do
58
+ file = "neo4j-kernel-#{version}-tests.jar"
59
+ puts "DOWNLOAD TEST JAR #{file} from http://repo.typesafe.com"
60
+ system "wget http://repo.typesafe.com/typesafe/repo/org/neo4j/neo4j-kernel/#{version}/#{file}"
61
+ system "mv #{file} #{unpack_lib_dir}"
62
+ end
63
+
53
64
  desc "Upgrade using downloaded ...tar.gz file in ./tmp"
54
- task :upgrade => [:delete_old_jar] do
55
- system "cd tmp; tar xf #{source_file}"
65
+ task :upgrade => [:delete_old_jar, :test_jar] do
66
+ # system "cd tmp; tar xf #{source_file}"
56
67
  jars = File.expand_path("./lib/neo4j-community/jars")
57
- puts "Jar dir #{jars}"
58
68
  FileUtils.mkdir_p(jars)
59
69
  test_jars = File.expand_path("./lib/neo4j-community/test-jars")
60
70
  jar_files_to_copy.each {|f| system "cp #{unpack_lib_dir}/#{f} #{jars}; git add #{jars}/#{f}" unless f =~ /tests/}
61
71
  system_jars.each {|f| system "cp #{system_unpack_lib_dir}/#{f} #{jars}; git add #{jars}/#{f}" unless f =~ /tests/}
62
- jar_files_to_copy.each {|f| system "cp #{unpack_lib_dir}/#{f} #{test_jars}" if f =~ /tests/}
72
+
73
+ system "mkdir -p #{test_jars}"
74
+
75
+ jar_files_to_copy.each {|f| system "cp #{unpack_lib_dir}/#{f} #{test_jars}; git add #{test_jars}/#{f}" if f =~ /tests/}
63
76
  end
@@ -1,6 +1,6 @@
1
1
  module Neo4j
2
2
  module Community
3
- VERSION = "1.9.5"
4
- NEO_VERSION = "1.9.5"
3
+ VERSION = "2.0.0"
4
+ NEO_VERSION = "2.0.0"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j-community
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.5
4
+ version: 2.0.0
5
5
  prerelease:
6
6
  platform: java
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-11-14 00:00:00.000000000 Z
13
+ date: 2013-12-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -61,15 +61,21 @@ files:
61
61
  - lib/neo4j-community/jars/concurrentlinkedhashmap-lru-1.3.1.jar
62
62
  - lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
63
63
  - lib/neo4j-community/jars/lucene-core-3.6.2.jar
64
- - lib/neo4j-community/jars/neo4j-cypher-1.9.5.jar
65
- - lib/neo4j-community/jars/neo4j-graph-algo-1.9.5.jar
66
- - lib/neo4j-community/jars/neo4j-graph-matching-1.9.5.jar
67
- - lib/neo4j-community/jars/neo4j-jmx-1.9.5.jar
68
- - lib/neo4j-community/jars/neo4j-kernel-1.9.5.jar
69
- - lib/neo4j-community/jars/neo4j-lucene-index-1.9.5.jar
70
- - lib/neo4j-community/jars/neo4j-udc-1.9.5.jar
71
- - lib/neo4j-community/jars/scala-library-2.10.0.jar
72
- - lib/neo4j-community/jars/server-api-1.9.5.jar
64
+ - lib/neo4j-community/jars/neo4j-cypher-2.0.0.jar
65
+ - lib/neo4j-community/jars/neo4j-cypher-commons-2.0.0.jar
66
+ - lib/neo4j-community/jars/neo4j-cypher-compiler-1.9-2.0.0.jar
67
+ - lib/neo4j-community/jars/neo4j-cypher-compiler-2.0-2.0.0.jar
68
+ - lib/neo4j-community/jars/neo4j-graph-algo-2.0.0.jar
69
+ - lib/neo4j-community/jars/neo4j-graph-matching-2.0.0.jar
70
+ - lib/neo4j-community/jars/neo4j-jmx-2.0.0.jar
71
+ - lib/neo4j-community/jars/neo4j-kernel-2.0.0.jar
72
+ - lib/neo4j-community/jars/neo4j-lucene-index-2.0.0.jar
73
+ - lib/neo4j-community/jars/neo4j-udc-2.0.0.jar
74
+ - lib/neo4j-community/jars/parboiled-core-1.1.6.jar
75
+ - lib/neo4j-community/jars/parboiled-scala_2.10-1.1.6.jar
76
+ - lib/neo4j-community/jars/scala-library-2.10.3.jar
77
+ - lib/neo4j-community/jars/server-api-2.0.0.jar
78
+ - lib/neo4j-community/test-jars/neo4j-kernel-2.0.0-tests.jar
73
79
  - lib/neo4j-community/version.rb
74
80
  - lib/neo4j-jars.rb
75
81
  - neo4j-community.gemspec
@@ -83,19 +89,24 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
89
  requirements:
84
90
  - - '>='
85
91
  - !ruby/object:Gem::Version
92
+ segments:
93
+ - 0
86
94
  version: '0'
95
+ hash: 2
87
96
  none: false
88
97
  required_rubygems_version: !ruby/object:Gem::Requirement
89
98
  requirements:
90
99
  - - '>='
91
100
  - !ruby/object:Gem::Version
101
+ segments:
102
+ - 0
92
103
  version: '0'
104
+ hash: 2
93
105
  none: false
94
106
  requirements: []
95
107
  rubyforge_project: neo4j-community
96
108
  rubygems_version: 1.8.24
97
109
  signing_key:
98
110
  specification_version: 3
99
- summary: The neo4j Community edition v1.9.5 JAR files
111
+ summary: The neo4j Community edition v2.0.0 JAR files
100
112
  test_files: []
101
- has_rdoc: