-
Notifications
You must be signed in to change notification settings - Fork 6
/
neo4j-enterprise.gemspec
27 lines (22 loc) · 1.17 KB
/
neo4j-enterprise.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "neo4j-enterprise/version"
Gem::Specification.new do |s|
s.name = "neo4j-enterprise"
s.version = Neo4j::Enterprise::VERSION
s.authors = ["Dmytrii Nagirniak", "Andreas Ronge", "Volker Pacher"]
s.email = ["dnagir@gmail.com", "andreas.ronge@gmail.com", "volker.pacher@gmail.com"]
s.homepage = "https://github.com/neo4jrb/neo4j-enterprise"
s.summary = "The neo4j Enterprise edition v#{Neo4j::Enterprise::NEO_VERSION} JAR files"
s.description = "The Neo4j Enterprise Jar files, adding online backup and High Availability clustering – licensed under AGPL, see http://neo4j.org/licensing-guide/"
s.rubyforge_project = "neo4j-enterprise"
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"]
s.platform = 'java'
# specify any dependencies here; for example:
s.add_development_dependency "rake"
s.add_development_dependency "jeweler"
# s.add_runtime_dependency "neo4j-community"
end