Sha256: 07acea78b89be12f3399f5a07d07549ed423d699307c7911db712e031cb76b22

Contents?: true

Size: 902 Bytes

Versions: 2

Compression:

Stored size: 902 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "signature/version"

Gem::Specification.new do |s|
  s.name        = "signature"
  s.version     = Signature::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Martyn Loughran"]
  s.email       = ["me@mloughran.com"]
  s.homepage    = "http://github.com/mloughran/signature"
  s.summary     = %q{Simple key/secret based authentication for apis}
  s.description = %q{Simple key/secret based authentication for apis}

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency "jruby-openssl" if defined?(JRUBY_VERSION)
  s.add_development_dependency "rspec", "~> 2.9.0"
  s.add_development_dependency "em-spec"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
signature-0.1.6 signature.gemspec
signature-0.1.4 signature.gemspec