Sha256: b02a9936971991de0d523a9251a5c5f8e8c456bfbb8c30c145f0e6992c2d0515

Contents?: true

Size: 1.64 KB

Versions: 7

Compression:

Stored size: 1.64 KB

Contents

# 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 translations in ruby applications with the awesome power of static analysis — Edit}
  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_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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
i18n-tasks-0.6.1 i18n-tasks.gemspec
i18n-tasks-0.6.0 i18n-tasks.gemspec
i18n-tasks-0.5.4 i18n-tasks.gemspec
i18n-tasks-0.5.3 i18n-tasks.gemspec
i18n-tasks-0.5.2 i18n-tasks.gemspec
i18n-tasks-0.5.1 i18n-tasks.gemspec
i18n-tasks-0.5.0 i18n-tasks.gemspec