# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'signpost/verifier/version' Gem::Specification.new do |spec| spec.name = "signpost-verifier" spec.version = Signpost::Verifier::VERSION spec.authors = ["Burke Libbey"] spec.email = ["burke.libbey@shopify.com"] spec.summary = %q{Verify HTTP requests signed by signpost-signer} spec.description = %q{Verify signed HTTP requests against a list of authorized_keys} spec.homepage = "https://github.com/Shopify/signpost" bins = ['signpost-verify-linux', 'signpost-verify-darwin'] binfiles = bins.map { |b| "bin/#{b}" } spec.files = binfiles + `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'bin' spec.executables = bins spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end