-
Notifications
You must be signed in to change notification settings - Fork 6
/
topojson-rails.gemspec
25 lines (21 loc) · 979 Bytes
/
topojson-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'topojson-rails/version'
Gem::Specification.new do |gem|
gem.name = "topojson-rails"
gem.version = Topojson::Rails::VERSION
gem.authors = ["Vlad Gorodetsky"]
gem.email = ["[email protected]"]
gem.description = %q{An extension of GeoJSON that encodes topology.}
gem.summary = %q{Gemified topojson.js asset for Rails}
gem.homepage = "http://github.com/bai/topojson-rails"
gem.licenses = ["MIT"]
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.signing_key = File.expand_path("~/.gem/private_key.pem") if $0 =~ /gem\z/
gem.cert_chain = ["certs/bai.pem"]
gem.add_dependency "railties", ">= 3.0", "< 5.0"
end