forked from chidiwilliams/whisper.cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ruby : update bindings (ggerganov#2154)
* update library files * update whispercpp * not needed for gem
- Loading branch information
Showing
15 changed files
with
13,247 additions
and
4,461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
require 'rake/clean' | ||
require 'rubygems/package' | ||
|
||
desc 'Build gem' | ||
task :package do | ||
spec_source = File.read File.join(File.dirname(__FILE__),'whispercpp.gemspec') | ||
spec = nil | ||
# see: http://gist.github.com/16215 | ||
Thread.new { spec = eval("#{spec_source}") }.join | ||
spec.validate | ||
Gem::Package.build(spec) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.