neo4j_bolt 0.1.1
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.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +34 -0
- data/LICENSE +674 -0
- data/README.md +50 -0
- data/Rakefile +6 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/neo4j_bolt/version.rb +3 -0
- data/lib/neo4j_bolt.rb +880 -0
- data/neo4j_bolt.gemspec +30 -0
- metadata +73 -0
    
        data/neo4j_bolt.gemspec
    ADDED
    
    | @@ -0,0 +1,30 @@ | |
| 1 | 
            +
            require_relative 'lib/neo4j_bolt/version'
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Gem::Specification.new do |spec|
         | 
| 4 | 
            +
              spec.name          = "neo4j_bolt"
         | 
| 5 | 
            +
              spec.version       = Neo4jBolt::VERSION
         | 
| 6 | 
            +
              spec.authors       = ["Michael Specht"]
         | 
| 7 | 
            +
              spec.email         = ["micha.specht@gmail.com"]
         | 
| 8 | 
            +
              spec.licenses      = ['GPL-3.0-only']
         | 
| 9 | 
            +
             | 
| 10 | 
            +
              spec.summary       = "A pure Neo4j/Bolt driver written in pure Ruby"
         | 
| 11 | 
            +
              spec.homepage      = "https://github.com/specht/neo4j_bolt"
         | 
| 12 | 
            +
              spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
         | 
| 13 | 
            +
             | 
| 14 | 
            +
              # spec.metadata["allowed_push_host"] = "https://github.com/specht/neo4j_bolt"
         | 
| 15 | 
            +
             | 
| 16 | 
            +
              spec.metadata["homepage_uri"] = spec.homepage
         | 
| 17 | 
            +
              spec.metadata["source_code_uri"] = "https://github.com/specht/neo4j_bolt"
         | 
| 18 | 
            +
              spec.metadata["changelog_uri"] = "https://github.com/specht/neo4j_bolt"
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              # Specify which files should be added to the gem when it is released.
         | 
| 21 | 
            +
              # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
         | 
| 22 | 
            +
              spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
         | 
| 23 | 
            +
                `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
         | 
| 24 | 
            +
              end
         | 
| 25 | 
            +
              spec.bindir        = "exe"
         | 
| 26 | 
            +
              spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
         | 
| 27 | 
            +
              spec.require_paths = ["lib"]
         | 
| 28 | 
            +
             | 
| 29 | 
            +
              spec.add_development_dependency "rspec", "~> 3.2"
         | 
| 30 | 
            +
            end
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,73 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: neo4j_bolt
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.1.1
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Michael Specht
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: exe
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2022-10-27 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies:
         | 
| 13 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 14 | 
            +
              name: rspec
         | 
| 15 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 | 
            +
                requirements:
         | 
| 17 | 
            +
                - - "~>"
         | 
| 18 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            +
                    version: '3.2'
         | 
| 20 | 
            +
              type: :development
         | 
| 21 | 
            +
              prerelease: false
         | 
| 22 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 | 
            +
                requirements:
         | 
| 24 | 
            +
                - - "~>"
         | 
| 25 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            +
                    version: '3.2'
         | 
| 27 | 
            +
            description: 
         | 
| 28 | 
            +
            email:
         | 
| 29 | 
            +
            - micha.specht@gmail.com
         | 
| 30 | 
            +
            executables: []
         | 
| 31 | 
            +
            extensions: []
         | 
| 32 | 
            +
            extra_rdoc_files: []
         | 
| 33 | 
            +
            files:
         | 
| 34 | 
            +
            - ".gitignore"
         | 
| 35 | 
            +
            - ".rspec"
         | 
| 36 | 
            +
            - ".travis.yml"
         | 
| 37 | 
            +
            - Gemfile
         | 
| 38 | 
            +
            - Gemfile.lock
         | 
| 39 | 
            +
            - LICENSE
         | 
| 40 | 
            +
            - README.md
         | 
| 41 | 
            +
            - Rakefile
         | 
| 42 | 
            +
            - bin/console
         | 
| 43 | 
            +
            - bin/setup
         | 
| 44 | 
            +
            - lib/neo4j_bolt.rb
         | 
| 45 | 
            +
            - lib/neo4j_bolt/version.rb
         | 
| 46 | 
            +
            - neo4j_bolt.gemspec
         | 
| 47 | 
            +
            homepage: https://github.com/specht/neo4j_bolt
         | 
| 48 | 
            +
            licenses:
         | 
| 49 | 
            +
            - GPL-3.0-only
         | 
| 50 | 
            +
            metadata:
         | 
| 51 | 
            +
              homepage_uri: https://github.com/specht/neo4j_bolt
         | 
| 52 | 
            +
              source_code_uri: https://github.com/specht/neo4j_bolt
         | 
| 53 | 
            +
              changelog_uri: https://github.com/specht/neo4j_bolt
         | 
| 54 | 
            +
            post_install_message: 
         | 
| 55 | 
            +
            rdoc_options: []
         | 
| 56 | 
            +
            require_paths:
         | 
| 57 | 
            +
            - lib
         | 
| 58 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 59 | 
            +
              requirements:
         | 
| 60 | 
            +
              - - ">="
         | 
| 61 | 
            +
                - !ruby/object:Gem::Version
         | 
| 62 | 
            +
                  version: 2.3.0
         | 
| 63 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 64 | 
            +
              requirements:
         | 
| 65 | 
            +
              - - ">="
         | 
| 66 | 
            +
                - !ruby/object:Gem::Version
         | 
| 67 | 
            +
                  version: '0'
         | 
| 68 | 
            +
            requirements: []
         | 
| 69 | 
            +
            rubygems_version: 3.3.5
         | 
| 70 | 
            +
            signing_key: 
         | 
| 71 | 
            +
            specification_version: 4
         | 
| 72 | 
            +
            summary: A pure Neo4j/Bolt driver written in pure Ruby
         | 
| 73 | 
            +
            test_files: []
         |