Skip to content

Instantly share code, notes, and snippets.

@chadjemmett
Last active December 16, 2015 16:39
Show Gist options
  • Save chadjemmett/5464473 to your computer and use it in GitHub Desktop.
Save chadjemmett/5464473 to your computer and use it in GitHub Desktop.
require 'unirest'
font_formats = ["otf", "ttf", "svg", "woff"]
font_formats.each do
|format, response|
response = Unirest::post("https://ofc.p.mashape.com/convert/",
{"X-Mashape-Authorization" => "***********************" },
{:file => File.new("Arial.ttf", "rb"),
:format => "#{format}", :callback => "http://aqueous-taiga-8219.herokuapp.com/target"}
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment