forked from mrmans0n/localio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalio.gemspec
More file actions
35 lines (28 loc) · 1.41 KB
/
localio.gemspec
File metadata and controls
35 lines (28 loc) · 1.41 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
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'localio/version'
Gem::Specification.new do |spec|
spec.name = "localio"
spec.version = Localio::VERSION
spec.authors = ["Nacho Lopez"]
spec.email = ["nacho@nlopez.io"]
spec.description = %q{Automatic Localizable file generation for multiple platforms (Rails YAML, Android, Java Properties, iOS, JSON, .NET ResX)}
spec.summary = %q{Automatic Localizable file generation for multiple type of files, like Android string.xml, Xcode Localizable.strings, JSON files, Rails YAML files, Java properties, etc. reading from Google Drive and Excel spreadsheets as base.}
spec.homepage = "http://github.com/mrmans0n/localio"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.executables << "localize"
spec.add_development_dependency "rspec"
spec.required_ruby_version = ">= 1.9.2"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_dependency "micro-optparse", "~> 1.2"
spec.add_dependency "google_drive", "~> 1.0"
spec.add_dependency "spreadsheet", "~> 1.0"
spec.add_dependency "simple_xlsx_reader", "~> 1.0"
spec.add_dependency "nokogiri", "~> 1.6"
end