# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $:.unshift(lib) unless $:.include?(lib) require 'threat_agent/version' Gem::Specification.new do |spec| spec.name = 'threat_agent' spec.version = ThreatAgent::VERSION spec.authors = ['Erran Carey'] spec.email = ['me@errancarey.com'] spec.description = %q{A gem to interface with the Threat Agent API} spec.summary = %q{Interact with apps from the Threat Agent website} spec.homepage = 'http://developer.threatagent.com' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_dependency 'colorize' spec.add_dependency 'redcarpet' spec.add_dependency 'thor' spec.add_dependency 'yard' spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' end