-
Notifications
You must be signed in to change notification settings - Fork 10
/
ipinfo-rails.gemspec
32 lines (27 loc) · 1.19 KB
/
ipinfo-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
26
27
28
29
30
31
32
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ipinfo-rails/version'
Gem::Specification.new do |s|
s.name = 'ipinfo-rails'
s.version = IPinfoRails::VERSION
s.required_ruby_version = '>= 2.5.0'
s.date = '2018-12-10'
s.summary = 'The official Rails gem for IPinfo. IPinfo prides itself on ' \
'being the most reliable, accurate, and in-depth source of ' \
'IP address data available anywhere. We process terabytes ' \
'of data to produce our custom IP geolocation, company, ' \
'carrier and IP type data sets. You can visit our developer ' \
'docs at https://ipinfo.io/developers.'
s.description = s.summary
s.authors = ['James Timmins', 'Uman Shahzad']
s.email = ['jameshtimmins@gmail.com', 'uman@mslm.io']
s.homepage = 'https://ipinfo.io'
s.license = 'Apache-2.0'
s.add_runtime_dependency 'IPinfo', '~> 1.0.1'
s.add_runtime_dependency 'rack', '~> 2.0'
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.require_paths = ['lib']
end