Sha256: 4519f7b3d34d647c1d6a6f957af586b62fe402e4ee2aa052496099a1219282cd

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rbnacl/version"

Gem::Specification.new do |gem|
  gem.name          = "rbnacl"
  gem.version       = RbNaCl::VERSION
  gem.authors       = ["Tony Arcieri", "Jonathan Stott"]
  gem.email         = ["tony.arcieri@gmail.com", "jonathan.stott@gmail.com"]
  gem.description   = "Ruby binding to the Networking and Cryptography (NaCl) library"
  gem.summary       = "The Networking and Cryptography (NaCl) library provides a high-level toolkit for building cryptographic systems and protocols"
  gem.homepage      = "https://github.com/cryptosphere/rbnacl"
  gem.licenses      = ["MIT"]

  gem.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  gem.executables   = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.platform = "jruby" if defined? JRUBY_VERSION

  gem.add_runtime_dependency "ffi"

  gem.add_development_dependency "rake"
  gem.add_development_dependency "rspec", "~> 3.0.0"
  gem.add_development_dependency "rubocop"

  gem.cert_chain = ["bascule.cert"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rbnacl-3.4.0 rbnacl.gemspec
rbnacl-3.3.0 rbnacl.gemspec