-
Notifications
You must be signed in to change notification settings - Fork 0
/
ios_localizer.gemspec
24 lines (20 loc) · 979 Bytes
/
ios_localizer.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 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ios_localizer/version'
Gem::Specification.new do |gem|
gem.name = "ios_localizer"
gem.date = Date.today
gem.version = IosLocalizer::VERSION
gem.authors = ["Daniel Olshansky", "Amandeep Grewal"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Uses Google Translate's REST API to properly translate the source Localizable.strings file to each of the specified languages}
gem.summary = %q{Localizes iOS applications!}
gem.homepage = ""
gem.files = `git ls-files`.split($/)
gem.executables = ["ios_localizer"] #gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "json"
gem.add_dependency "htmlentities"
end