Sha256: 615e30362dceb20bb5554ea2378d0c03a148eb8e4357d07f5444a25ed520f5b7

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

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

require 'neo4j/version'


Gem::Specification.new do |s|
  s.name     = "neo4j"
  s.version  = Neo4j::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/tree"
  s.rubyforge_project = 'neo4j'
  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 CHANGELOG CONTRIBUTORS Gemfile neo4j.gemspec)
  s.executables = 'neo4j-shell'
  s.has_rdoc = true
  s.extra_rdoc_files = %w( README.rdoc )
  s.rdoc_options = ["--quiet", "--title", "Neo4j.rb", "--line-numbers", "--main", "README.rdoc", "--inline-source"]

  s.add_dependency('orm_adapter', ">= 0.0.3")
  s.add_dependency("activemodel", ">= 3.0.0")
  s.add_dependency("will_paginate", ["~>3.0.pre"])
  s.add_dependency("railties", ">= 3.0.0")
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
neo4j-1.0.0.beta.30-java neo4j.gemspec
neo4j-1.0.0.beta.29-java neo4j.gemspec
neo4j-1.0.0.beta.28-java neo4j.gemspec