Sha256: 1b6610743a920913500ff672a80a7a6555a974480f3d7588115f3dda21d67541

Contents?: true

Size: 1.68 KB

Versions: 2

Compression:

Stored size: 1.68 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.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 Ruby"
  s.license = 'MIT'

  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.md Gemfile neo4j-core.gemspec)
  s.has_rdoc = true
  s.extra_rdoc_files = %w( README.md )
  s.rdoc_options = ["--quiet", "--title", "Neo4j::Core", "--line-numbers", "--main", "README.rdoc", "--inline-source"]

  # Not released yet
  s.add_dependency("httparty")
  s.add_dependency("faraday", '~> 0.9.0')
  s.add_dependency('net-http-persistent')
  s.add_dependency('httpclient')
  s.add_dependency('faraday_middleware', '~> 0.9.1')
  s.add_dependency("json")
  s.add_dependency("os")  # for Rake task
  s.add_dependency("zip") # for Rake task
  s.add_dependency("activesupport") # For ActiveSupport::Notifications

  if RUBY_PLATFORM == 'java'
    s.add_dependency("neo4j-community", '~> 2.1.1')
    s.add_development_dependency 'ruby-debug'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
neo4j-core-3.0.0 neo4j-core.gemspec
neo4j-core-3.0.0.rc.5 neo4j-core.gemspec