ledermann/tinnef

View on GitHub
tinnef.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tinnef/version"

Gem::Specification.new do |s|
  s.name        = 'tinnef'
  s.version     = Tinnef::VERSION
  s.licenses    = ['MIT']
  s.authors     = ["Georg Ledermann"]
  s.email       = ["mail@georg-ledermann.de"]
  s.homepage    = "https://github.com/ledermann/tinnef"
  s.summary     = %q{Ruby wrapper for tnef, a tool for unpacking 'winmail.dat' files}
  s.description = %q{Handling e-mail attachments with MIME type 'application/ms-tnef'}
  s.required_ruby_version = '>= 1.9.3'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'test-unit'
end