Sha256: 0672b22952b6388db276bd4e921afdf6d123d2e4070de6e9eea798a72f6388d7

Contents?: true

Size: 814 Bytes

Versions: 1

Compression:

Stored size: 814 Bytes

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

Gem::Specification.new do |s|
  s.name        = "html-renderer"
  s.version     = File.read "VERSION"
  s.date        = File.mtime("VERSION").strftime("%Y-%m-%d")
  s.summary     = "HTML Renderer"
  s.description = "Easily implement an HTML renderer by creating a subclass and adding some methods, similar to RedCarpet. (Examples are included for rendering HTML to ANSI and plain text.)"
  s.homepage    = "http://github.com/epitron/html-renderer/"
  s.licenses    = ["WTFPL"]
  s.email       = "chris@ill-logic.com"
  s.authors     = ["epitron"]

  s.files            = `git ls`.lines.map(&:strip)
  s.extra_rdoc_files = ["README.md", "LICENSE"]

  s.add_dependency "oga"
  s.add_dependency "terminal-table", "~> 1.8"
  s.add_dependency "term-ansicolor", "~> 1.7"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
html-renderer-0.1.3 .gemspec