Sha256: 2ae04f1843092211b449d754f1e56e889be8d597165b72ab8f517509665dcdf8

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
ext = File.expand_path('../ext', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
$LOAD_PATH.unshift(ext) unless $LOAD_PATH.include?(ext)
require 'ipconverter/version'

Gem::Specification.new do |spec|
  spec.name          = 'ipconverter'
  spec.version       = IpConverter::VERSION
  spec.authors       = ['Joshua Scott']
  spec.email         = ['joshua.scott@gmail.com']
  spec.summary       = 'Utilities for working with IP addresses'
  spec.description   = %q(Fast C extension for converting IP addresses from
string to integer)
  spec.homepage      = 'http://github.com/joshuawscott/ipconverter'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.extensions    = ['ext/ipconverter/extconf.rb']
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = %w(lib ext)

  spec.add_development_dependency 'bundler', '~> 1.6'
  spec.add_development_dependency 'rake', '~> 10'
  spec.add_development_dependency 'minitest', '~> 5'
  spec.add_development_dependency 'rake-compiler', '~> 0.9'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ipconverter-0.3.0 ipconverter.gemspec
ipconverter-0.2.0 ipconverter.gemspec
ipconverter-0.1.1 ipconverter.gemspec