neo4j-community 1.6.0.alpha.2-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/.gitignore +5 -0
- data/Gemfile +4 -0
- data/README.md +27 -0
- data/Rakefile +1 -0
- data/lib/neo4j-community.rb +21 -0
- data/lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar +0 -0
- data/lib/neo4j-community/jars/lucene-core-3.1.0.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-community-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-cypher-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-graph-algo-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-graph-matching-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-jmx-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-kernel-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-lucene-index-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-shell-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/neo4j-udc-1.6.M02.jar +0 -0
- data/lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar +0 -0
- data/lib/neo4j-community/jars/scala-library-2.9.0-1.jar +0 -0
- data/lib/neo4j-community/jars/server-api-1.6.M02.jar +0 -0
- data/lib/neo4j-community/version.rb +6 -0
- data/lib/neo4j-jars.rb +1 -0
- data/neo4j-community.gemspec +26 -0
- metadata +78 -0
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
JAR files for the neo4j Graph Database
|
2
|
+
==================================================
|
3
|
+
|
4
|
+
This gem provides a set of jar files of the Neo4j Graph Database.
|
5
|
+
|
6
|
+
To use it: `require 'neo4j-jars'`
|
7
|
+
|
8
|
+
It can be used directly but the intention is to use it with [neo4j.rb](https://github.com/andreasronge/neo4j).
|
9
|
+
|
10
|
+
Versioning
|
11
|
+
==================================================
|
12
|
+
|
13
|
+
The major and minor versions of the gem correspond to the version of the database.
|
14
|
+
The patch version is different.
|
15
|
+
|
16
|
+
That means:
|
17
|
+
|
18
|
+
- if you need `1.6`, use `~> 1.6.0` in the Gemfile. It will always update to the latest version of 1.6 of the database.
|
19
|
+
- if you need `1.6.M02`, then you will need to find the appropriate gem version on the [RubyGems](http://rubygems.org) and lock it (using `= 1.6.25` for example). But it will always be `1.6.xxx`.
|
20
|
+
|
21
|
+
License
|
22
|
+
==================================================
|
23
|
+
|
24
|
+
This gem is MIT licensed.
|
25
|
+
|
26
|
+
However the jars included are licensed by [Neo4j](http://neo4j.orb).
|
27
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require "neo4j-community/version"
|
2
|
+
|
3
|
+
|
4
|
+
module Neo4j
|
5
|
+
module Community
|
6
|
+
|
7
|
+
def self.jars_root
|
8
|
+
"#{File.dirname(__FILE__)}/neo4j-community/jars"
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.load_jars!
|
12
|
+
require 'java'
|
13
|
+
puts jars_root
|
14
|
+
Dir["#{jars_root}/*.jar"].each {|jar| require jar }
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
Neo4j::Community.load_jars!
|
21
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/neo4j-jars.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "neo4j-community"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "neo4j-community/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "neo4j-community"
|
7
|
+
s.version = Neo4j::Community::VERSION
|
8
|
+
s.authors = ["Dmytrii Nagirniak", "Andreas Ronge"]
|
9
|
+
s.email = ["dnagir@gmail.com", "andreas.ronge@gmail.com"]
|
10
|
+
s.homepage = "https://github.com/dnagir/neo4j-community"
|
11
|
+
s.summary = "The neo4j Community edition v#{Neo4j::Community::NEO_VERSION} JAR files"
|
12
|
+
s.description = "The Java Jar files for the Neo4j Community, a high performance, fully ACID transactional graph database – licensed under the GPL, see license - http://neo4j.org/licensing-guide/ "
|
13
|
+
|
14
|
+
s.rubyforge_project = "neo4j-community"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
s.platform = 'java'
|
22
|
+
|
23
|
+
# specify any dependencies here; for example:
|
24
|
+
# s.add_development_dependency "rspec"
|
25
|
+
# s.add_runtime_dependency "rest-client"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: neo4j-community
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: 6
|
5
|
+
version: 1.6.0.alpha.2
|
6
|
+
platform: java
|
7
|
+
authors:
|
8
|
+
- Dmytrii Nagirniak
|
9
|
+
- Andreas Ronge
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
|
14
|
+
date: 2012-01-10 00:00:00 Z
|
15
|
+
dependencies: []
|
16
|
+
|
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/ "
|
18
|
+
email:
|
19
|
+
- dnagir@gmail.com
|
20
|
+
- andreas.ronge@gmail.com
|
21
|
+
executables: []
|
22
|
+
|
23
|
+
extensions: []
|
24
|
+
|
25
|
+
extra_rdoc_files: []
|
26
|
+
|
27
|
+
files:
|
28
|
+
- .gitignore
|
29
|
+
- Gemfile
|
30
|
+
- README.md
|
31
|
+
- Rakefile
|
32
|
+
- lib/neo4j-community.rb
|
33
|
+
- lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
|
34
|
+
- lib/neo4j-community/jars/lucene-core-3.1.0.jar
|
35
|
+
- lib/neo4j-community/jars/neo4j-community-1.6.M02.jar
|
36
|
+
- lib/neo4j-community/jars/neo4j-cypher-1.6.M02.jar
|
37
|
+
- lib/neo4j-community/jars/neo4j-graph-algo-1.6.M02.jar
|
38
|
+
- lib/neo4j-community/jars/neo4j-graph-matching-1.6.M02.jar
|
39
|
+
- lib/neo4j-community/jars/neo4j-jmx-1.6.M02.jar
|
40
|
+
- lib/neo4j-community/jars/neo4j-kernel-1.6.M02.jar
|
41
|
+
- lib/neo4j-community/jars/neo4j-lucene-index-1.6.M02.jar
|
42
|
+
- lib/neo4j-community/jars/neo4j-shell-1.6.M02.jar
|
43
|
+
- lib/neo4j-community/jars/neo4j-udc-1.6.M02.jar
|
44
|
+
- lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
|
45
|
+
- lib/neo4j-community/jars/scala-library-2.9.0-1.jar
|
46
|
+
- lib/neo4j-community/jars/server-api-1.6.M02.jar
|
47
|
+
- lib/neo4j-community/version.rb
|
48
|
+
- lib/neo4j-jars.rb
|
49
|
+
- neo4j-community.gemspec
|
50
|
+
homepage: https://github.com/dnagir/neo4j-community
|
51
|
+
licenses: []
|
52
|
+
|
53
|
+
post_install_message:
|
54
|
+
rdoc_options: []
|
55
|
+
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: "0"
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ">"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 1.3.1
|
70
|
+
requirements: []
|
71
|
+
|
72
|
+
rubyforge_project: neo4j-community
|
73
|
+
rubygems_version: 1.8.9
|
74
|
+
signing_key:
|
75
|
+
specification_version: 3
|
76
|
+
summary: The neo4j Community edition v1.6.M02 JAR files
|
77
|
+
test_files: []
|
78
|
+
|