Skip to content
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.

Unbabel/unbabel-ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unbabel Ruby SDK

Project Status: Abandoned – Initial development has started, but there has not yet been a stable, usable release; the project has been abandoned and the author(s) do not intend on continuing development.

Ruby SDK for the Unbabel REST API

Documentation:

Please visit our documentation page at https://developers.unbabel.com/

Installation

gem install unbabel-ruby

Getting started:

require 'unbabel_sdk'

username = ENV['UNBABEL_TEST_USER']
apikey = ENV['UNBABEL_API_KEY']

api = Unbabel.new(username, apikey)
api.post_translations('This is a test translation', target_language: 'pt', source_language: 'en')