mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
24 lines
832 B
Ruby
24 lines
832 B
Ruby
Gem::Specification.new do |s|
|
|
s.name = 'github-linguist'
|
|
s.version = '2.10.11'
|
|
s.summary = "GitHub Language detection"
|
|
s.description = 'We use this library at GitHub to detect blob languages, highlight code, ignore binary files, suppress generated files in diffs, and generate language breakdown graphs.'
|
|
|
|
s.authors = "GitHub"
|
|
s.homepage = "https://github.com/github/linguist"
|
|
s.license = "MIT"
|
|
|
|
s.files = Dir['lib/**/*']
|
|
s.executables << 'linguist'
|
|
|
|
s.add_dependency 'charlock_holmes', '~> 0.6.6'
|
|
s.add_dependency 'escape_utils', '>= 0.3.1'
|
|
s.add_dependency 'mime-types', '~> 1.19'
|
|
s.add_dependency 'pygments.rb', '~> 0.5.4'
|
|
|
|
s.add_development_dependency 'json'
|
|
s.add_development_dependency 'mocha'
|
|
s.add_development_dependency 'rake'
|
|
s.add_development_dependency 'yajl-ruby'
|
|
end
|