Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appfolio/seven_bridges
https://github.com/appfolio/seven_bridges
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/appfolio/seven_bridges
- Owner: appfolio
- License: mit
- Created: 2016-03-23T23:21:04.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-02-04T00:24:13.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T12:59:02.823Z (2 months ago)
- Language: Ruby
- Size: 23.4 KB
- Stars: 2
- Watchers: 106
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SevenBridges
## Installation
Add seven_bridges to Gemfile
```ruby
gem 'seven_bridges'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install seven_bridges
## Usage
Add an initializer to your project in e.g. /my-sweet-app/config/initializers/seven_bridges_initializer.rb with:
```ruby
require 'seven_bridges'
require 'neo4j'# TODO USE ENV variable
n4j = Neo4j::Session.open(:server_db, 'http://localhost:7474')
n4j.query('match (n) detach delete n')SevenBridges.configure do |config|
# change default settings if needed# config.klass = MiniTest::Test
config.project_root = '/path/to/src/my/project/my-sweet-app'
end
```## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).