Sha256: a3bc6cdee8e550896be36392135caf3d15dd544dc763949f9bef1e7a2a5174a7
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
# 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ipinfo-rails-1.0.1 | ipinfo-rails.gemspec |
ipinfo-rails-1.0.0 | ipinfo-rails.gemspec |