-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathgengo-ruby.gemspec
More file actions
34 lines (30 loc) · 1.37 KB
/
gengo-ruby.gemspec
File metadata and controls
34 lines (30 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# encoding: UTF-8
require File.join(File.dirname(__FILE__), 'lib/gengo-ruby/version')
Gem::Specification.new do |gs|
gs.name = "gengo"
gs.version = Gengo::Config::VERSION
gs.authors = [
"Matthew Romaine",
"Shawn Smith",
"Issam Zeibak",
"Alexander Lidé",
]
gs.date = "2015-08-24"
gs.summary = "A library for interfacing with the Gengo Translation API."
gs.description = "Gengo is a service that offers various translation APIs, both machine and high quality human-sourced. The Gengo gem lets you interface with the Gengo REST API (http://developers.gengo.com/).Note: previous version of this library can be found at https://rubygems.org/gems/mygengo. All further updates will be made here."
gs.email = "api@gengo.com"
gs.homepage = "http://developers.gengo.com"
gs.files = Dir['lib/**/*.rb', 'licenses/*', 'bin/*', '[A-Z]*', 'test/**/*'].to_a
gs.has_rdoc = true
gs.license = 'New BSD'
gs.add_dependency('json')
gs.add_dependency('multipart-post')
gs.add_dependency('mime-types')
gs.add_development_dependency 'rspec', '~> 3.5'
gs.add_development_dependency 'rack', '~> 2.1.4'
gs.add_development_dependency 'rack-test'
gs.add_development_dependency 'rake'
gs.add_development_dependency 'simplecov'
gs.add_development_dependency 'webmock', '~> 3.8'
end
# vim: set fileencoding=utf-8 :