Tom 7 embed as ruby C extension
require'tembed'# override filesTembed.call!'/path/to/font.ttf'Tembed.call!File.new('/path/to/font.ttf')Tembed.call!Pathname('/path/to/font.ttf')# yield fixed data, but don't override fileTembed.call('/path/to/font.ttf')do |data|
# write fixed dataendTembed.call(IO.read('/path/to/font.ttf'))do |data|
# write fixed dataend$ rake compile; irb -r ./lib/tembedgem build tembed.gemspec