-
Notifications
You must be signed in to change notification settings - Fork 2
/
architect4r.gemspec
31 lines (27 loc) · 1.21 KB
/
architect4r.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
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "architect4r/version"
Gem::Specification.new do |s|
s.name = "architect4r"
s.version = Architect4r::VERSION
s.authors = ["Maximilian Schulz"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/namxam/architect4r/"
s.summary = %q{A gem for working with the neo4j REST interface.}
s.description = %q{This gem is intended for making a neo4j graph db accessible by providing a ruby wrapper for the REST API.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# Production dependencies
s.add_runtime_dependency %q<activemodel>, "~> 3.0"
s.add_runtime_dependency %q<json>, "~> 1.5"
s.add_runtime_dependency %q<typhoeus>, "~> 0.2"
# Development dependencies
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "guard"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "rb-fsevent"
s.add_development_dependency "growl"
end