-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcryptouri.gemspec
More file actions
28 lines (25 loc) · 1.21 KB
/
cryptouri.gemspec
File metadata and controls
28 lines (25 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "cryptouri/version"
Gem::Specification.new do |spec|
spec.name = "cryptouri"
spec.version = CryptoURI::VERSION
spec.authors = ["Tony Arcieri"]
spec.email = ["bascule@gmail.com"]
spec.summary = "URI-based format for encoding cryptographic objects with Bech32 encoding/checksums"
spec.description = <<-DESCRIPTION
CryptoURI is a URN-like namespace for encoding various cryptographic objects,
including keys, signatures, and fingerprints/digests. It leverages the bech32
serialization format to provide a human-friendly encoding and checksums.
DESCRIPTION
spec.homepage = "https://github.com/cryptouri/cryptouri.rb/"
spec.license = "Apache 2.0"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.3"
spec.required_rubygems_version = ">= 2.4"
spec.add_development_dependency "bundler", "~> 2.0"
end