forked from glebm/i18n-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n-tasks.gemspec
43 lines (39 loc) · 1.66 KB
/
i18n-tasks.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'i18n/tasks/version'
Gem::Specification.new do |s|
s.name = 'i18n-tasks'
s.version = I18n::Tasks::VERSION
s.authors = ['glebm']
s.email = ['glex.spb@gmail.com']
s.summary = %q{Manage localization and translation with the awesome power of static analysis}
s.description = %q{
i18n-tasks helps you find and manage missing and unused translations.
It scans calls such as `I18n.t('some.key')` and provides reports on key usage, missing, and unused keys.
It can also can pre-fill missing keys, including from Google Translate, and it can remove unused keys as well.
}
s.homepage = 'https://github.com/glebm/i18n-tasks'
if s.respond_to?(:metadata=)
s.metadata = { 'issue_tracker' => 'https://github.com/glebm/i18n-tasks' }
end
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.files -= s.files.grep(%r{^doc/img/})
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_dependency 'erubis'
s.add_dependency 'activesupport'
s.add_dependency 'easy_translate', '>= 0.5.0'
s.add_dependency 'term-ansicolor'
s.add_dependency 'terminal-table'
s.add_dependency 'highline'
s.add_dependency 'slop', '>= 3.5.0'
s.add_dependency 'i18n'
s.add_development_dependency 'axlsx', '~> 2.0'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'yard'
end