{"id":19972711,"url":"https://github.com/neo4jrb/neo4j-ruby-driver","last_synced_at":"2025-04-12T18:48:33.357Z","repository":{"id":37502514,"uuid":"159107673","full_name":"neo4jrb/neo4j-ruby-driver","owner":"neo4jrb","description":"Neo4j Ruby Driver","archived":false,"fork":false,"pushed_at":"2025-01-14T21:37:24.000Z","size":3660,"stargazers_count":40,"open_issues_count":23,"forks_count":29,"subscribers_count":10,"default_branch":"4.4","last_synced_at":"2025-04-03T21:13:21.887Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neo4jrb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-26T03:55:18.000Z","updated_at":"2025-01-06T18:51:08.000Z","dependencies_parsed_at":"2022-07-12T15:50:49.549Z","dependency_job_id":"392c91c7-17bd-4cd7-99a1-4be7d64e5f23","html_url":"https://github.com/neo4jrb/neo4j-ruby-driver","commit_stats":{"total_commits":589,"total_committers":13,"mean_commits":45.30769230769231,"dds":0.1765704584040747,"last_synced_commit":"525dc5f1b083965f8436e2e0f430d09f6c8f2377"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-ruby-driver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-ruby-driver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-ruby-driver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-ruby-driver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neo4jrb","download_url":"https://codeload.github.com/neo4jrb/neo4j-ruby-driver/tar.gz/refs/heads/4.4","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618069,"owners_count":21134197,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T03:08:59.856Z","updated_at":"2025-04-12T18:48:33.333Z","avatar_url":"https://github.com/neo4jrb.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Neo4j::Driver\n\nhome  :: https://github.com/neo4jrb/neo4j-ruby-driver\n\nThis repository contains 2 implementation of a neo4j driver for ruby:\n- based on official java implementation. It provides a thin wrapper over the java driver (only on jruby).\n- pure ruby implmementation. Available on all ruby versions \u003e= 3.1.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'neo4j-ruby-driver'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install neo4j-ruby-driver\n\n## Server Compatibility\n\nThe compatibility with Neo4j Server versions is documented in the [Neo4j Knowledge Base](https://neo4j.com/developer/kb/neo4j-supported-versions/).\n\n## Usage\n\nThe API is to highest possible degree consistent with the official java driver. \nAt this moment [The Neo4j Drivers Manual v4.4](https://neo4j.com/docs/java-manual/current/) along with the ruby version of the [code fragments](https://github.com/neo4jrb/neo4j-ruby-driver/blob/master/docs/dev_manual_examples.rb) and the ruby specs provide the only documentation. \n\n[Neo4j Java Driver 4.3 API](https://neo4j.com/docs/api/java-driver/current/) can be helpful as well..\n\n## Development\n\nThis gem includes 2 different implementations: java driver wrapper and pure ruby driver\n\n    $ bin/setup \n     \n## Testing\n\nTo run the tests the following tools need to be installed:\n\n    $ brew install python\n    $ pip3 install --user git+https://github.com/klobuczek/boltkit@1.3#egg=boltkit\n    $ neoctrl-install -e 4.4.5 servers\n    $ neoctrl-configure servers/neo4j-enterprise-4.4.5 dbms.directories.import= dbms.default_listen_address=::\n    $ neoctrl-set-initial-password pass servers/neo4j-enterprise-4.4.5\n    $ neoctrl-start servers/neo4j-enterprise-4.4.5\n\nTo run the tests:\n```console\n$ bin/setup\n$ rspec spec\n```\n\nKnown errors:\n\n1. In case of heap space memory error (`org.neo4j.driver.exceptions.DatabaseException: Java heap space`), you should limit the dbms memory, for example:\n\n```console\n$ neoctrl-configure servers/neo4j-enterprise-4.4.5 dbms.memory.pagecache.size=600m dbms.memory.heap.max_size=600m dbms.memory.heap.initial_size=600m dbms.directories.import= dbms.connectors.default_listen_address=::\n```\n\n2. When using command `pip3 install --user git+https://github.com/klobuczek/boltkit@1.3#egg=boltkit`, if you have m1 mac chip, you may get error when pip3 tries to install `cryptography`. Steps to take in that case (reference https://stackoverflow.com/a/70074869/2559490)\n\n```console\n$ pip uninstall cffi\n$ python -m pip install --upgrade pip\n$ pip install cffi\n$ pip install cryptography\n```\n\n## Contributing\n\nSuggestions, improvements, bug reports and pull requests are welcome on GitHub at https://github.com/neo4jrb/neo4j-ruby-driver.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4jrb%2Fneo4j-ruby-driver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneo4jrb%2Fneo4j-ruby-driver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4jrb%2Fneo4j-ruby-driver/lists"}