neo4j-enterprise 1.6.0.alpha.7
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-enterprise.rb +21 -0
 - data/lib/neo4j-enterprise/jars/log4j-1.2.16.jar +0 -0
 - data/lib/neo4j-enterprise/jars/neo4j-backup-1.6.M02.jar +0 -0
 - data/lib/neo4j-enterprise/jars/neo4j-com-1.6.M02.jar +0 -0
 - data/lib/neo4j-enterprise/jars/neo4j-enterprise-1.6.M02.jar +0 -0
 - data/lib/neo4j-enterprise/jars/neo4j-ha-1.6.M02.jar +0 -0
 - data/lib/neo4j-enterprise/jars/org.apache.servicemix.bundles.netty-3.2.5.Final_1.jar +0 -0
 - data/lib/neo4j-enterprise/jars/slf4j-api-1.6.1.jar +0 -0
 - data/lib/neo4j-enterprise/jars/zookeeper-3.3.2.jar +0 -0
 - data/lib/neo4j-enterprise/version.rb +6 -0
 - data/neo4j-enterprise.gemspec +27 -0
 - metadata +86 -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-enterprise/version"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module Neo4j
         
     | 
| 
      
 4 
     | 
    
         
            +
              module Enterprise
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
                def self.jars_root
         
     | 
| 
      
 7 
     | 
    
         
            +
                  File.join("#{File.dirname(__FILE__)}", "neo4j-enterprise", "jars")
         
     | 
| 
      
 8 
     | 
    
         
            +
                end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
                def self.load_jars!
         
     | 
| 
      
 11 
     | 
    
         
            +
                  require 'java'
         
     | 
| 
      
 12 
     | 
    
         
            +
                  require 'neo4j-community'
         
     | 
| 
      
 13 
     | 
    
         
            +
                  require 'neo4j-advanced'
         
     | 
| 
      
 14 
     | 
    
         
            +
                  ::Neo4j::Community.ensure_version!(Enterprise::NEO_VERSION, 'enterprise')
         
     | 
| 
      
 15 
     | 
    
         
            +
                  Dir["#{jars_root}/*.jar"].each {|jar| require jar }
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            Neo4j::Enterprise.load_jars!
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # -*- encoding: utf-8 -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
            $:.push File.expand_path("../lib", __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            require "neo4j-enterprise/version"
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.name        = "neo4j-enterprise"
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.version     = Neo4j::Enterprise::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-enterprise"
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.summary     = "The neo4j Enterprise edition v#{Neo4j::Enterprise::NEO_VERSION} JAR files"
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.description = "The Neo4j Enterprise Jar files, adding online backup and High Availability clustering – licensed under AGPL, see http://neo4j.org/licensing-guide/"
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
              s.rubyforge_project = "neo4j-enterprise"
         
     | 
| 
      
 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.add_runtime_dependency "neo4j-advanced", "~> 1.6.0.alpha"
         
     | 
| 
      
 22 
     | 
    
         
            +
              s.add_runtime_dependency "neo4j-community" # Just making it explicit
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
              # specify any dependencies here; for example:
         
     | 
| 
      
 25 
     | 
    
         
            +
              # s.add_development_dependency "rspec"
         
     | 
| 
      
 26 
     | 
    
         
            +
              # s.add_runtime_dependency "rest-client"
         
     | 
| 
      
 27 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,86 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: neo4j-enterprise
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.6.0.alpha.7
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 6
         
     | 
| 
      
 6 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 8 
     | 
    
         
            +
            - Dmytrii Nagirniak
         
     | 
| 
      
 9 
     | 
    
         
            +
            - Andreas Ronge
         
     | 
| 
      
 10 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 11 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 12 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 13 
     | 
    
         
            +
            date: 2012-01-17 00:00:00.000000000 Z
         
     | 
| 
      
 14 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 15 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 16 
     | 
    
         
            +
              name: neo4j-advanced
         
     | 
| 
      
 17 
     | 
    
         
            +
              requirement: &70295948278600 !ruby/object:Gem::Requirement
         
     | 
| 
      
 18 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 19 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 20 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 22 
     | 
    
         
            +
                    version: 1.6.0.alpha
         
     | 
| 
      
 23 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 24 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 25 
     | 
    
         
            +
              version_requirements: *70295948278600
         
     | 
| 
      
 26 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 27 
     | 
    
         
            +
              name: neo4j-community
         
     | 
| 
      
 28 
     | 
    
         
            +
              requirement: &70295948277640 !ruby/object:Gem::Requirement
         
     | 
| 
      
 29 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: *70295948277640
         
     | 
| 
      
 37 
     | 
    
         
            +
            description: The Neo4j Enterprise Jar files, adding online backup and High Availability
         
     | 
| 
      
 38 
     | 
    
         
            +
              clustering – licensed under AGPL, see http://neo4j.org/licensing-guide/
         
     | 
| 
      
 39 
     | 
    
         
            +
            email:
         
     | 
| 
      
 40 
     | 
    
         
            +
            - dnagir@gmail.com
         
     | 
| 
      
 41 
     | 
    
         
            +
            - andreas.ronge@gmail.com
         
     | 
| 
      
 42 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 43 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 44 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 45 
     | 
    
         
            +
            files:
         
     | 
| 
      
 46 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 47 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 48 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 49 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 50 
     | 
    
         
            +
            - lib/neo4j-enterprise.rb
         
     | 
| 
      
 51 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/log4j-1.2.16.jar
         
     | 
| 
      
 52 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/neo4j-backup-1.6.M02.jar
         
     | 
| 
      
 53 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/neo4j-com-1.6.M02.jar
         
     | 
| 
      
 54 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/neo4j-enterprise-1.6.M02.jar
         
     | 
| 
      
 55 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/neo4j-ha-1.6.M02.jar
         
     | 
| 
      
 56 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/org.apache.servicemix.bundles.netty-3.2.5.Final_1.jar
         
     | 
| 
      
 57 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/slf4j-api-1.6.1.jar
         
     | 
| 
      
 58 
     | 
    
         
            +
            - lib/neo4j-enterprise/jars/zookeeper-3.3.2.jar
         
     | 
| 
      
 59 
     | 
    
         
            +
            - lib/neo4j-enterprise/version.rb
         
     | 
| 
      
 60 
     | 
    
         
            +
            - neo4j-enterprise.gemspec
         
     | 
| 
      
 61 
     | 
    
         
            +
            homepage: https://github.com/dnagir/neo4j-enterprise
         
     | 
| 
      
 62 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 63 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 64 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 65 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 66 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 67 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 68 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 69 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 70 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 71 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 72 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 73 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 74 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 75 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 76 
     | 
    
         
            +
              - - ! '>'
         
     | 
| 
      
 77 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 78 
     | 
    
         
            +
                  version: 1.3.1
         
     | 
| 
      
 79 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 80 
     | 
    
         
            +
            rubyforge_project: neo4j-enterprise
         
     | 
| 
      
 81 
     | 
    
         
            +
            rubygems_version: 1.8.10
         
     | 
| 
      
 82 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 83 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 84 
     | 
    
         
            +
            summary: The neo4j Enterprise edition v1.6.M02 JAR files
         
     | 
| 
      
 85 
     | 
    
         
            +
            test_files: []
         
     | 
| 
      
 86 
     | 
    
         
            +
            has_rdoc: 
         
     |