Sha256: c8719c4ad6c141183b8b16ee4fcdf61e0cee4529fb6dbffd2586cb6f578cd71d
Contents?: true
Size: 665 Bytes
Versions: 1
Compression:
Stored size: 665 Bytes
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- Gem::Specification.new do |s| s.name = "html2ansi" s.version = File.read "VERSION" s.date = File.mtime("VERSION").strftime("%Y-%m-%d") s.summary = "html2ansi is readability for the terminal (renders html documents to text, with terminal colors)" s.homepage = "http://github.com/epitron/html2ansi/" s.licenses = ["WTFPL"] s.email = "chris@ill-logic.com" s.authors = ["epitron"] s.files = `git ls`.lines.map(&:strip) s.executables = ['html2ansi'] s.extra_rdoc_files = ["README.md", "LICENSE"] s.add_dependency "html-renderer", "~> 0.1.1" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
html2ansi-0.0.2 | .gemspec |