2024-10-16 15:44:04 +00:00
|
|
|
require "yaml"
|
|
|
|
|
2024-05-22 20:02:52 +00:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "whispercpp"
|
|
|
|
s.authors = ["Georgi Gerganov", "Todd A. Fisher"]
|
|
|
|
s.version = '1.3.0'
|
|
|
|
s.date = '2024-05-14'
|
|
|
|
s.description = %q{High-performance inference of OpenAI's Whisper automatic speech recognition (ASR) model via Ruby}
|
|
|
|
s.email = 'todd.fisher@gmail.com'
|
|
|
|
s.extra_rdoc_files = ['LICENSE', 'README.md']
|
|
|
|
|
2024-10-16 15:44:04 +00:00
|
|
|
s.files = `git ls-files . -z`.split("\x0") + YAML.load_file("extsources.yaml").values.flatten
|
2024-05-22 20:02:52 +00:00
|
|
|
|
|
|
|
s.summary = %q{Ruby whisper.cpp bindings}
|
|
|
|
s.test_files = ["tests/test_whisper.rb"]
|
|
|
|
|
|
|
|
s.extensions << 'ext/extconf.rb'
|
|
|
|
|
|
|
|
|
|
|
|
#### Documentation and testing.
|
|
|
|
s.homepage = 'https://github.com/ggerganov/whisper.cpp'
|
|
|
|
s.rdoc_options = ['--main', '../../README.md']
|
|
|
|
|
|
|
|
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
|
|
|
|
s.licenses = ['MIT']
|
|
|
|
end
|