Codebase list ruby-gpgme / 882aade1-ecee-4ed6-b95e-a4f266994eb1/main gpgme.gemspec
882aade1-ecee-4ed6-b95e-a4f266994eb1/main

Tree @882aade1-ecee-4ed6-b95e-a4f266994eb1/main (Download .tar.gz)

gpgme.gemspec @882aade1-ecee-4ed6-b95e-a4f266994eb1/mainraw · history · blame

Gem::Specification.new do |s|
  s.name              = 'gpgme'
  s.version           = '2.0.20'
  s.authors           = ['Daiki Ueno', 'Albert Llop']
  s.date              = '2018-11-22'
  s.email             = 'ueno@gnu.org'
  s.extensions        = ['ext/gpgme/extconf.rb']
  s.files             = Dir['{lib,ext,test,examples}/**/*'] +
                        Dir['ports/archives/*']
  s.rubyforge_project = 'ruby-gpgme'
  s.homepage          = 'http://github.com/ueno/ruby-gpgme'
  s.license           = 'LGPL-2.1+'
  s.require_paths     = ['lib', 'ext']
  s.summary           = 'Ruby binding of GPGME.'
  s.description       = %q{Ruby-GPGME is a Ruby language binding of GPGME (GnuPG
Made Easy). GnuPG Made Easy (GPGME) is a library designed to make access to
GnuPG easier for applications. It provides a High-Level Crypto API for
encryption, decryption, signing, signature verification and key management.}

  s.add_runtime_dependency "mini_portile2", "~>2.3"

  s.add_development_dependency "mocha",     "~> 0.9.12"
  s.add_development_dependency "minitest",  "~> 2.1.0"
  s.add_development_dependency "yard",      "~> 0.9.11"
  s.add_development_dependency "coveralls"

  case RUBY_VERSION
  when /\A1\.9\.2/, /\A1\.9\.3/
    s.add_development_dependency "debugger" , "~> 1.6.6"
  when /\A1\.9\./
    s.add_development_dependency "ruby-debug19" , "~> 0.11.6"
  when /\A2\./
    s.add_development_dependency "byebug" , "~> 3.5.1"
  else
    s.add_development_dependency "ruby-debug" , "~> 0.10.4"
  end
end