-
Notifications
You must be signed in to change notification settings - Fork 1
/
bmt.gemspec
26 lines (24 loc) · 1.03 KB
/
bmt.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'date'
require 'bmt/version'
Gem::Specification.new do |spec|
spec.name = 'bmt'
spec.version = Bmt::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Federico Tagliabue', 'Andy White']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Ruby wrapper for Bugcrowd\'s Methodology Taxonomy'
spec.homepage = 'https://github.com/bugcrowd/bmt-ruby'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.{rb,json}']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.1'
spec.metadata = {
'homepage_uri' => 'https://github.com/bugcrowd/bmt-ruby',
'changelog_uri' => 'https://github.com/bugcrowd/bmt-ruby/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/bugcrowd/bmt-ruby',
'bug_tracker_uri' => 'https://github.com/bugcrowd/bmt-ruby/issues',
'rubygems_mfa_required' => 'true'
}
end