Sha256: 0bf02cf71525da04cea8343eecaa95614883e83a33cd0fb043b1fb2dacb0e2aa

Contents?: true

Size: 1.21 KB

Versions: 5

Compression:

Stored size: 1.21 KB

Contents

lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'neo4j-core/version'

Gem::Specification.new do |s|
  s.name     = "neo4j-core"
  s.version  = Neo4j::Core::VERSION
  s.platform = 'java'
  s.required_ruby_version = ">= 1.8.7"

  s.authors  = "Andreas Ronge"
  s.email    = 'andreas.ronge@gmail.com'
  s.homepage = "http://github.com/andreasronge/neo4j-core/tree"
  s.rubyforge_project = 'neo4j-core'
  s.summary = "A graph database for JRuby"
  s.description = <<-EOF
You can think of Neo4j as a high-performance graph engine with all the features of a mature and robust database.
The programmer works with an object-oriented, flexible network structure rather than with strict and static tables 
yet enjoys all the benefits of a fully transactional, enterprise-strength database.
It comes included with the Apache Lucene document database.
  EOF

  s.require_path = 'lib'
  s.files = Dir.glob("{bin,lib,config}/**/*") + %w(README.rdoc Gemfile neo4j-core.gemspec)
  s.has_rdoc = true
  s.extra_rdoc_files = %w( README.rdoc )
  s.rdoc_options = ["--quiet", "--title", "Neo4j::Core", "--line-numbers", "--main", "README.rdoc", "--inline-source"]

  s.add_dependency("neo4j-community", ">= 1.7.0")
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
neo4j-core-2.0.1-java neo4j-core.gemspec
neo4j-core-2.0.0-java neo4j-core.gemspec
neo4j-core-2.0.0.rc2-java neo4j-core.gemspec
neo4j-core-2.0.0.rc1-java neo4j-core.gemspec
neo4j-core-0.0.15-java neo4j-core.gemspec