-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathgeoruby.gemspec
More file actions
23 lines (18 loc) · 755 Bytes
/
georuby.gemspec
File metadata and controls
23 lines (18 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'geo_ruby/version'
Gem::Specification.new do |s|
s.name = 'georuby'
s.version = GeoRuby::VERSION
s.authors = ['Guilhem Vellut', 'Marcos Piccinini', 'Marcus Mateus', 'Doug Cole']
s.description = "GeoRuby provides geometric data types from the OGC 'Simple Features' specification."
s.summary = 'Ruby data holder for OGC Simple Features'
s.email = 'x@nofxx.com'
s.license = 'MIT'
# s.extensions = ["ext/georuby/extconf.rb"]
s.files = Dir.glob('{lib,spec}/**/*') + %w(README.md Rakefile)
s.homepage = 'http://github.com/nofxx/georuby'
s.require_paths = ['lib']
s.rubygems_version = '1.3.7'
end