-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmrubyc_types.gemspec
More file actions
24 lines (19 loc) · 936 Bytes
/
mrubyc_types.gemspec
File metadata and controls
24 lines (19 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'mrubyc_types'
spec.version = '0.1.0'
spec.authors = ['tufusa']
spec.email = ['me@tufusa.net']
spec.summary = 'RBS type definitions for mruby/c built-in classes.'
spec.description = 'RBS type definitions for mruby/c built-in classes.'
spec.homepage = 'https://github.com/poporonnet/mrubyc_types'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/poporonnet/mrubyc_types'
spec.metadata['changelog_uri'] = 'https://github.com/poporonnet/mrubyc_types/blob/main/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
# Specify which files should be added to the gem when it is released.
spec.files = Dir['core/**/*', 'LICENSE.txt', 'README.md']
end