-
Notifications
You must be signed in to change notification settings - Fork 5
/
neo4j-cypher.gemspec
26 lines (23 loc) · 1010 Bytes
/
neo4j-cypher.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'neo4j-cypher/version'
Gem::Specification.new do |s|
s.name = "neo4j-cypher"
s.version = Neo4j::Cypher::VERSION
s.required_ruby_version = ">= 1.8.7"
s.license = 'MIT'
s.authors = "Andreas Ronge"
s.email = '[email protected]'
s.homepage = "https://github.com/andreasronge/neo4j-cypher/tree"
s.rubyforge_project = 'neo4j-cypher'
s.summary = "A Ruby DSL for Cypher - the Neo4j Graph Query Language"
s.description = <<-EOF
This gem is used in the JRuby neo4j gem but should work on any Ruby implementation since it simply
translate a Ruby block (the dsl) to a cypher string.
EOF
s.require_path = 'lib'
s.files = Dir.glob("{bin,lib,config}/**/*") + %w(README.rdoc Gemfile neo4j-cypher.gemspec)
s.has_rdoc = true
s.extra_rdoc_files = %w( README.rdoc )
s.rdoc_options = ["--quiet", "--title", "Neo4j::Cypher", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
end