-
Notifications
You must be signed in to change notification settings - Fork 4
/
geomash.gemspec
34 lines (29 loc) · 1.27 KB
/
geomash.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
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require 'geomash/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'geomash'
s.version = Geomash::VERSION
s.authors = ['Boston Public Library']
s.homepage = 'http://www.bpl.org'
s.summary = 'Parse string for potential geographic matches and return that data along with the TGN ID and Geonames ID.'
s.description = 'Parse string for potential geographic matches and return that data along with the TGN ID and Geonames ID.'
s.files = Dir['{app,config,db,lib}/**/*', 'Rakefile', 'README.rdoc']
s.test_files = Dir['test/**/*']
s.required_ruby_version = '>= 2.5'
s.add_dependency 'activesupport', '>= 5.0'
s.add_dependency 'countries', '>= 5.0.0'
s.add_dependency 'geocoder'
s.add_dependency 'stringex'
s.add_dependency 'typhoeus', '>= 1.4'
s.add_dependency 'nokogiri'
s.add_dependency 'htmlentities'
s.add_dependency 'sparql'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rails', '>= 5.0', '< 7.0'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
end