Sha256: f24f57436d9a282e40c9e3b0bad19f9670d1f2cdd1ae5182f875772d828dd12c
Contents?: true
Size: 966 Bytes
Versions: 1
Compression:
Stored size: 966 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "ip_anonymizer/version" Gem::Specification.new do |spec| spec.name = "ip_anonymizer" spec.version = IpAnonymizer::VERSION spec.authors = ["Andrew Kane"] spec.email = ["andrew@chartkick.com"] spec.summary = "IP address anonymizer for Ruby" spec.homepage = "https://github.com/ankane/ip_anonymizer" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.2.0" spec.add_development_dependency "benchmark-ips" spec.add_development_dependency "bundler" spec.add_development_dependency "minitest" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ip_anonymizer-0.1.0 | ip_anonymizer.gemspec |