Sha256: df643896d761d0138861ca4090e0ced18ffebae1c6653ef3f94202fe5bb5e696

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geoff-importer/version'

Gem::Specification.new do |gem|
  gem.name          = "geoff-importer"
  gem.version       = Geoff::Importer::VERSION
  gem.authors       = ["Volker Pacher"]
  gem.email         = ["volker.pacher@gmail.com"]
  gem.description   = %q{importing of geoff files into a neo4j instance}
  gem.summary       = %q{
                          imports a geoff file into a neo4j instance,
                          if a db location is given it will instantiate a graph db there
                          otherwise it will use the db instance passed in
                        }
  gem.homepage      = "https://github.com/shutl/geoff_importer"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_dependency("neo4j-community", '>= 1.8.M05', '< 1.9')
  
  gem.add_development_dependency 'jruby-openssl'
  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'rspec', '~>2.11.0'
  gem.add_development_dependency 'ruby-debug'
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
geoff-importer-0.0.2 geoff-importer.gemspec
geoff-importer-0.0.1 geoff-importer.gemspec