ioquatix/geospatial

View on GitHub
geospatial.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geospatial/version'

Gem::Specification.new do |spec|
    spec.name          = "geospatial"
    spec.version       = Geospatial::VERSION
    spec.authors       = ["Samuel Williams"]
    spec.email         = ["samuel.williams@oriontransfer.co.nz"]
    spec.summary       = %q{Provides abstractions for dealing with geographical locations efficiently}
    spec.homepage      = "https://github.com/ioquatix/geospatial"
    spec.license       = "MIT"

    spec.files         = `git ls-files -z`.split("\x0")
    spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
    spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
    spec.require_paths = ["lib"]
    
    spec.add_development_dependency "covered"
    spec.add_development_dependency "rspec", "~> 3.6"
    spec.add_development_dependency "bundler"
    spec.add_development_dependency "rake"
end