Sha256: 7d5f378a1737b0e1993c9bcf262cb83c74109466a2e0430c7d625e50b47441a7
Contents?: true
Size: 1.1 KB
Versions: 5
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tmx_importer/version' Gem::Specification.new do |spec| spec.name = "tmx_importer" spec.version = TmxImporter::VERSION spec.authors = ["Kevin S. Dias"] spec.email = ["diasks2@gmail.com"] spec.summary = %q{TMX translation memory file importer} spec.description = %q{Import the content of a TMX translation memory file to your database} spec.homepage = "https://github.com/diasks2/tmx_importer" spec.files = `git ls-files -z`.split("\x0") 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.add_development_dependency "bundler", "~> 1.9" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_runtime_dependency "libxml-ruby" spec.add_runtime_dependency "pretty_strings", "~> 0.5.0" spec.add_runtime_dependency "charlock_holmes_bundle_icu", '~> 0.6.9.2' end
Version data entries
5 entries across 5 versions & 1 rubygems