-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyatran.gemspec
24 lines (19 loc) · 879 Bytes
/
yatran.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path('../lib/yatran/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Igor Fedoronchuk"]
gem.email = ["fedoronchuk@gmail.com"]
gem.description = %q{unofficial http://api.yandex.ru/translate API Client for ruby }
gem.summary = %q{ automatic translations and language detecting }
gem.homepage = "https://github.com/Fivell/yatran"
gem.add_dependency 'json'
gem.add_development_dependency "rspec"
gem.add_development_dependency "rake"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "yatran"
gem.require_paths = ["lib"]
gem.version = Yatran::VERSION
end