-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathvictor.gemspec
25 lines (22 loc) · 899 Bytes
/
victor.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'victor/version'
Gem::Specification.new do |s|
s.name = 'victor'
s.version = Victor::VERSION
s.summary = 'SVG Builder'
s.description = 'Build SVG images with ease'
s.authors = ['Danny Ben Shitrit']
s.email = '[email protected]'
s.files = Dir['README.md', 'lib/**/*.*']
s.homepage = 'https://github.com/DannyBen/victor'
s.license = 'MIT'
s.required_ruby_version = '>= 3.0.0'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/DannyBen/victor/issues',
'changelog_uri' => 'https://github.com/DannyBen/victor/blob/master/CHANGELOG.md',
'homepage_uri' => 'https://victor.dannyb.co/',
'source_code_uri' => 'https://github.com/DannyBen/victor',
'rubygems_mfa_required' => 'true',
}
end