Sha256: f4430e634063e85363b3d6c23f3a52f63b8b9e5a09a9371409b7eb0adb1fb60a
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "rbnacl/version" Gem::Specification.new do |spec| spec.name = "rbnacl" spec.version = RbNaCl::VERSION spec.authors = ["Tony Arcieri", "Jonathan Stott"] spec.email = ["bascule@gmail.com", "jonathan.stott@gmail.com"] spec.homepage = "https://github.com/crypto-rb/rbnacl" spec.licenses = ["MIT"] spec.summary = "Ruby binding to the libsodium/NaCl cryptography library" spec.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ") The Networking and Cryptography (NaCl) library provides a high-level toolkit for building cryptographic systems and protocols DESCRIPTION spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.3.0" spec.add_runtime_dependency "ffi" spec.add_development_dependency "bundler" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rbnacl-7.0.0 | rbnacl.gemspec |