Sha256: e818fd7142f9974c83828a8c4d0e5af8cf36e76a5c4d74eb29f0beaaff56a0d5

Contents?: true

Size: 904 Bytes

Versions: 1

Compression:

Stored size: 904 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "gibberish"
  s.version     = Gibberish::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Mark Percival"]
  s.email       = ["mark@markpercival.us"]
  s.homepage    = "http://github.com/mdp/gibberish"
  s.summary     = %q{An opinionated ruby encryption library}
  s.description = %q{Supports OpenSSL compatible AES, HMAC, and RSA encryption}

  s.rubyforge_project = "gibberish"

  # Gem Signing
  s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem")
  s.cert_chain = ["gem-public_cert.pem"]

  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"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gibberish-1.2.1 gibberish.gemspec