Sha256: 04c040bd36038285df24d16e4bd9b797e329cde9395ad27cff82a7108351da2c
Contents?: true
Size: 1.19 KB
Versions: 1
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($/) 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"] if defined? JRUBY_VERSION gem.platform = "jruby" end gem.add_runtime_dependency "ffi" gem.add_development_dependency "rake" gem.add_development_dependency "rspec", ">= 2.14" gem.signing_key = "../.sekretz/gem-private_key.pem" gem.cert_chain = ["bascule.cert"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rbnacl-2.0.0 | rbnacl.gemspec |