forked from square/border_patrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborder_patrol.gemspec
More file actions
24 lines (19 loc) · 785 Bytes
/
border_patrol.gemspec
File metadata and controls
24 lines (19 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'border_patrol/version'
Gem::Specification.new do |s|
s.name = "border_patrol"
s.version = BorderPatrol::VERSION
s.authors = ["Zach Brock", "Matt Wilson"]
s.email = "eng@squareup.com"
s.date = "2011-07-06"
s.description = "Lets you import a KML file and then check if points are inside or outside region polygons defined by the file."
s.summary = "Import and query KML regions"
s.homepage = "http://github.com/square/border_patrol"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_dependency("nokogiri", ">= 1.4.3.1")
s.add_development_dependency("rake")
s.add_development_dependency("rspec", "~> 2.6.0")
end