-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathneoid.gemspec
30 lines (26 loc) · 1.14 KB
/
neoid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'neoid/version'
Gem::Specification.new do |s|
s.name = 'neoid'
s.version = Neoid::VERSION
s.authors = ['Ben Morgan', 'Elad Ossadon']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/neoid-gem/neoid'
s.summary = 'Neo4j for ActiveRecord'
s.description = 'Extend Ruby on Rails ActiveRecord with Neo4j nodes. Keep RDBMS and utilize the power of Neo4j queries. Originally by @elado.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['spec/**/*']
s.require_paths = ['lib']
s.add_development_dependency 'rake'
s.add_development_dependency 'pry'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rest-client'
s.add_development_dependency 'activerecord'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'rspec-its'
s.add_development_dependency 'factory_girl'
s.add_runtime_dependency 'neography'
end