-
Notifications
You must be signed in to change notification settings - Fork 141
/
pygments.rb.gemspec
32 lines (24 loc) · 1020 Bytes
/
pygments.rb.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
31
32
# frozen_string_literal: true
require_relative 'lib/pygments/version'
Gem::Specification.new do |s|
s.name = 'pygments.rb'
s.version = Pygments::VERSION
s.summary = 'pygments wrapper for ruby'
s.description = 'pygments.rb is a Ruby wrapper for Pygments syntax highlighter'
s.license = 'MIT'
s.homepage = 'https://github.com/pygments/pygments.rb'
s.authors = ['Aman Gupta', 'Ted Nyman', 'Marat Radchenko']
s.email = ['[email protected]']
s.metadata = {
'homepage_uri' => s.homepage,
'bug_tracker_uri' => "#{s.homepage}/issues",
'changelog_uri' => "#{s.homepage}/blob/master/CHANGELOG.adoc",
'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}",
'source_code_uri' => s.homepage
}
s.required_ruby_version = '>= 2.6.0'
s.add_development_dependency 'rake', '~> 13.2.0'
s.add_development_dependency 'rubocop', '~> 1.50.2'
s.add_development_dependency 'test-unit', '~> 3.6.0'
s.files = `git ls-files -z`.split("\0").reject { |f| File.symlink?(f) }
end