neo4j-jars 1.6.0.M01-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/Gemfile +3 -0
- data/README.rdoc +6 -0
- data/lib/neo4j-jars.rb +45 -0
- data/lib/neo4j-jars/core/geronimo-jta_1.1_spec-1.1.1.jar +0 -0
- data/lib/neo4j-jars/core/lucene-core-3.1.0.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-community-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-cypher-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-graph-algo-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-graph-matching-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-jmx-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-kernel-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-lucene-index-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-shell-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/neo4j-udc-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/core/org.apache.servicemix.bundles.jline-0.9.94_1.jar +0 -0
- data/lib/neo4j-jars/core/scala-library-2.9.0-1.jar +0 -0
- data/lib/neo4j-jars/core/server-api-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/ha/log4j-1.2.16.jar +0 -0
- data/lib/neo4j-jars/ha/neo4j-backup-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/ha/neo4j-com-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/ha/neo4j-enterprise-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/ha/neo4j-ha-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/ha/neo4j-management-1.6.M01.jar +0 -0
- data/lib/neo4j-jars/ha/org.apache.servicemix.bundles.netty-3.2.5.Final_1.jar +0 -0
- data/lib/neo4j-jars/ha/slf4j-api-1.6.1.jar +0 -0
- data/lib/neo4j-jars/ha/zookeeper-3.3.2.jar +0 -0
- data/lib/neo4j-jars/version.rb +3 -0
- data/neo4j-jars.gemspec +26 -0
- metadata +84 -0
data/Gemfile
ADDED
data/README.rdoc
ADDED
data/lib/neo4j-jars.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'java'
|
2
|
+
require 'neo4j-jars/core/geronimo-jta_1.1_spec-1.1.1.jar'
|
3
|
+
require 'neo4j-jars/core/lucene-core-3.1.0.jar'
|
4
|
+
require 'neo4j-jars/core/neo4j-cypher-1.6.M01.jar'
|
5
|
+
require 'neo4j-jars/core/neo4j-kernel-1.6.M01.jar'
|
6
|
+
require 'neo4j-jars/core/neo4j-lucene-index-1.6.M01.jar'
|
7
|
+
require 'neo4j-jars/core/neo4j-jmx-1.6.M01.jar'
|
8
|
+
require 'neo4j-jars/core/neo4j-udc-1.6.M01.jar'
|
9
|
+
require 'neo4j-jars/core/org.apache.servicemix.bundles.jline-0.9.94_1.jar'
|
10
|
+
require 'neo4j-jars/core/scala-library-2.9.0-1.jar'
|
11
|
+
require 'neo4j-jars/core/server-api-1.6.M01.jar'
|
12
|
+
require 'neo4j-jars/ha/neo4j-management-1.6.M01.jar'
|
13
|
+
|
14
|
+
require 'neo4j-jars/core/neo4j-graph-algo-1.6.M01.jar'
|
15
|
+
require 'neo4j-jars/core/neo4j-graph-matching-1.6.M01.jar'
|
16
|
+
|
17
|
+
module Neo4jJars
|
18
|
+
|
19
|
+
def self.load_local_jars
|
20
|
+
if Neo4j.config[:online_backup_enabled]
|
21
|
+
Neo4j.load_online_backup
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.load_shell_jars
|
26
|
+
require 'neo4j-jars/core/neo4j-shell-1.6.M01.jar'
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.load_online_backup
|
30
|
+
require 'neo4j-jars/ha/neo4j-com-1.6.M01.jar'
|
31
|
+
require 'neo4j-jars/ha/neo4j-backup-1.6.M01.jar'
|
32
|
+
require 'neo4j-jars/ha/org.apache.servicemix.bundles.netty-3.2.5.Final_1.jar'
|
33
|
+
Neo4j.send(:const_set, :OnlineBackup, org.neo4j.backup.OnlineBackup)
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.load_ha_jars
|
37
|
+
require 'neo4j-jars/ha/neo4j-backup-1.6.M01.jar'
|
38
|
+
require 'neo4j-jars/ha/neo4j-com-1.6.M01.jar'
|
39
|
+
require 'neo4j-jars/ha/neo4j-ha-1.6.M01.jar'
|
40
|
+
require 'neo4j-jars/ha/log4j-1.2.16.jar'
|
41
|
+
require 'neo4j-jars/ha/org.apache.servicemix.bundles.netty-3.2.5.Final_1.jar'
|
42
|
+
require 'neo4j-jars/ha/slf4j-api-1.6.1.jar'
|
43
|
+
require 'neo4j-jars/ha/zookeeper-3.3.2.jar'
|
44
|
+
end
|
45
|
+
end
|
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
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/neo4j-jars.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
lib = File.expand_path('../lib/', __FILE__)
|
2
|
+
$:.unshift lib unless $:.include?(lib)
|
3
|
+
|
4
|
+
require 'neo4j-jars/version'
|
5
|
+
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "neo4j-jars"
|
9
|
+
s.version = Neo4jJars::VERSION
|
10
|
+
s.platform = 'java'
|
11
|
+
s.required_ruby_version = ">= 1.8.7"
|
12
|
+
|
13
|
+
s.authors = "Andreas Ronge"
|
14
|
+
s.email = 'andreas.ronge@gmail.com'
|
15
|
+
s.homepage = "http://github.com/andreasronge/neo4j-jars/tree"
|
16
|
+
s.rubyforge_project = 'neo4j-jars'
|
17
|
+
s.summary = "The Java Jar files needed for the neo4j gem"
|
18
|
+
s.description = <<-EOF
|
19
|
+
Contains the jars found on http://neo4j.org/download/
|
20
|
+
Please check the license for those jar files on the link above !
|
21
|
+
EOF
|
22
|
+
|
23
|
+
s.require_path = 'lib'
|
24
|
+
s.files = Dir.glob("lib/**/*") + %w(README.rdoc Gemfile neo4j-jars.gemspec)
|
25
|
+
s.has_rdoc = false
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: neo4j-jars
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: 6
|
5
|
+
version: 1.6.0.M01
|
6
|
+
platform: java
|
7
|
+
authors:
|
8
|
+
- Andreas Ronge
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2012-01-06 00:00:00 Z
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: |
|
17
|
+
Contains the jars found on http://neo4j.org/download/
|
18
|
+
Please check the license for those jar files on the link above !
|
19
|
+
|
20
|
+
email: andreas.ronge@gmail.com
|
21
|
+
executables: []
|
22
|
+
|
23
|
+
extensions: []
|
24
|
+
|
25
|
+
extra_rdoc_files: []
|
26
|
+
|
27
|
+
files:
|
28
|
+
- lib/neo4j-jars.rb
|
29
|
+
- lib/neo4j-jars/version.rb
|
30
|
+
- lib/neo4j-jars/core/neo4j-graph-matching-1.6.M01.jar
|
31
|
+
- lib/neo4j-jars/core/neo4j-community-1.6.M01.jar
|
32
|
+
- lib/neo4j-jars/core/neo4j-kernel-1.6.M01.jar
|
33
|
+
- lib/neo4j-jars/core/server-api-1.6.M01.jar
|
34
|
+
- lib/neo4j-jars/core/geronimo-jta_1.1_spec-1.1.1.jar
|
35
|
+
- lib/neo4j-jars/core/neo4j-lucene-index-1.6.M01.jar
|
36
|
+
- lib/neo4j-jars/core/neo4j-jmx-1.6.M01.jar
|
37
|
+
- lib/neo4j-jars/core/scala-library-2.9.0-1.jar
|
38
|
+
- lib/neo4j-jars/core/neo4j-cypher-1.6.M01.jar
|
39
|
+
- lib/neo4j-jars/core/lucene-core-3.1.0.jar
|
40
|
+
- lib/neo4j-jars/core/neo4j-graph-algo-1.6.M01.jar
|
41
|
+
- lib/neo4j-jars/core/org.apache.servicemix.bundles.jline-0.9.94_1.jar
|
42
|
+
- lib/neo4j-jars/core/neo4j-shell-1.6.M01.jar
|
43
|
+
- lib/neo4j-jars/core/neo4j-udc-1.6.M01.jar
|
44
|
+
- lib/neo4j-jars/ha/slf4j-api-1.6.1.jar
|
45
|
+
- lib/neo4j-jars/ha/neo4j-backup-1.6.M01.jar
|
46
|
+
- lib/neo4j-jars/ha/zookeeper-3.3.2.jar
|
47
|
+
- lib/neo4j-jars/ha/org.apache.servicemix.bundles.netty-3.2.5.Final_1.jar
|
48
|
+
- lib/neo4j-jars/ha/log4j-1.2.16.jar
|
49
|
+
- lib/neo4j-jars/ha/neo4j-enterprise-1.6.M01.jar
|
50
|
+
- lib/neo4j-jars/ha/neo4j-ha-1.6.M01.jar
|
51
|
+
- lib/neo4j-jars/ha/neo4j-management-1.6.M01.jar
|
52
|
+
- lib/neo4j-jars/ha/neo4j-com-1.6.M01.jar
|
53
|
+
- README.rdoc
|
54
|
+
- Gemfile
|
55
|
+
- neo4j-jars.gemspec
|
56
|
+
homepage: http://github.com/andreasronge/neo4j-jars/tree
|
57
|
+
licenses: []
|
58
|
+
|
59
|
+
post_install_message:
|
60
|
+
rdoc_options: []
|
61
|
+
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 1.8.7
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ">"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.3.1
|
76
|
+
requirements: []
|
77
|
+
|
78
|
+
rubyforge_project: neo4j-jars
|
79
|
+
rubygems_version: 1.8.9
|
80
|
+
signing_key:
|
81
|
+
specification_version: 3
|
82
|
+
summary: The Java Jar files needed for the neo4j gem
|
83
|
+
test_files: []
|
84
|
+
|