Sha256: 294eca1c0d01003c0355ca4c9c98194febe6f8d588442fda0f378279425f466e

Contents?: true

Size: 1.33 KB

Versions: 3

Compression:

Stored size: 1.33 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "whereisthis"
  spec.version       = Whereisthis::VERSION
  spec.authors       = ["Kent Gruber"]
  spec.email         = ["kgruber1@emich.edu"]

  spec.summary       = %q{A command-line application to help determine the location information from a given ip address or url.}
  spec.description   = %q{A command-line application to help determine the location information from a given ip address or url. This application is meant to be easy to operate and attempts to follow simple unix philosophies to easily sit right along side commands like whoami in your command-line arsenal.}
  spec.homepage      = "https://github.com/picatz/whereisthis"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "bin"
  spec.executable    = "whereisthis"
  spec.require_paths = ["lib"]

  spec.add_dependency "ipaddress"
  spec.add_dependency "colorize"
  spec.add_dependency "trollop"
  spec.add_dependency "unirest"

  spec.add_development_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
whereisthis-1.3.0 whereisthis.gemspec
whereisthis-1.2.0 whereisthis.gemspec
whereisthis-1.0.5 whereisthis.gemspec