-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrkwalify.gemspec
More file actions
26 lines (20 loc) · 1.08 KB
/
Copy pathrkwalify.gemspec
File metadata and controls
26 lines (20 loc) · 1.08 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
# frozen_string_literal: true
require_relative 'lib/kwalify/version'
Gem::Specification.new do |spec|
spec.name = 'rkwalify'
spec.version = Kwalify::RELEASE
spec.authors = ['Al Snow', 'David Crosby', 'makoto kuwata']
spec.summary = 'Rkwalify is a parser, schema validator, and data binding tool for YAML and JSON.'
spec.description = 'Rkwalify is a parser, schema validator, and data binding tool for YAML and JSON. Rkwalify enables you to handle YAML and JSON more easily and strictly.'
spec.homepage = 'https://github.com/jasnow/rkwalify/blob/main/README.md'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.4.7'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/jasnow/rkwalify'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = `git ls-files`.split("\n")
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
end