0.0
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
Tool to help understand the relationships between ruby methods
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
~> 5.0
~> 10.0

Runtime

>= 0
 Project Readme

SevenBridges

Installation

Add seven_bridges to Gemfile

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:

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.