-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnbt_utils.gemspec
30 lines (24 loc) · 1.13 KB
/
nbt_utils.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
30
# frozen_string_literal: true
require File.expand_path('lib/nbt_utils/version', __dir__)
Gem::Specification.new do |s|
s.name = 'nbt_utils'
s.version = NBTUtils::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Michael Dungan']
s.email = ['[email protected]']
s.homepage = 'https://github.com/xxx/nbt_utils'
s.summary = 'Set of classes to read and write Minecraft .nbt files'
s.description = 'Some classes to read and write Minecraft .nbt files. '\
'See NBT.txt in the /doc directory for format description.'
s.required_rubygems_version = '>= 1.3.6'
s.add_dependency 'bindata', '~> 2'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'rubocop', '~> 1'
s.add_development_dependency 'rubocop-performance', '~> 1'
s.add_development_dependency 'rubocop-rspec', '~> 2'
s.required_ruby_version = '>= 2.7'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").filter_map { |f| f =~ %r{^bin/(.*)} ? Regexp.last_match(1) : nil }
s.require_path = 'lib'
s.metadata['rubygems_mfa_required'] = 'true'
end