-
Notifications
You must be signed in to change notification settings - Fork 1
/
result_vault.gemspec
29 lines (22 loc) · 1.02 KB
/
result_vault.gemspec
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
29
# frozen_string_literal: true
require_relative 'lib/result_vault/version'
Gem::Specification.new do |spec|
spec.name = 'result_vault'
spec.version = ResultVault::VERSION
spec.summary = 'When your method needs to return more than a single value.'
spec.description = %(
When your method needs to return more than a single value,
ResultVault is a pure ruby solution that lets you add all
the extra bits you need while still returning a single object.
).gsub("\n", ' ')
spec.authors = ['CodeMeister']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/Rubology/result_vault'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = 'https://github.com/Rubology/result_vault/blob/master/CHANGELOG.md'
spec.files = Dir.glob('lib/**/*', File::FNM_DOTMATCH)
spec.require_paths = ['lib']
end