forked from stesla/base32
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathurlcrypt.gemspec
More file actions
26 lines (22 loc) · 1.12 KB
/
urlcrypt.gemspec
File metadata and controls
26 lines (22 loc) · 1.12 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
Gem::Specification.new do |spec|
spec.name = 'urlcrypt'
spec.version = "0.2.0"
spec.authors = ["Thomas Fuchs"]
spec.email = ["thomas@slash7.com"]
spec.extra_rdoc_files = ["README.md"]
spec.summary = "Securely encode and decode short pieces of arbitrary binary data in URLs."
spec.description = "Securely encode and decode short pieces of arbitrary binary data in URLs."
spec.homepage = "https://github.com/cheerful/URLcrypt"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/cheerful/URLcrypt"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = FileList["Rakefile", "{config,lib,test}/**/*"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.requirements << 'none'
spec.metadata['rubygems_mfa_required'] = 'true'
end