Sha256: f0195d3482879c1c5cfef079f8c639aa729f8f6e1527c5f3c0ea8f8640e9c66f

Contents?: true

Size: 767 Bytes

Versions: 2

Compression:

Stored size: 767 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", "~> 2"
  s.add_development_dependency "ansi", "~> 1"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
html-renderer-0.0.2 .gemspec
html-renderer-0.0.1 .gemspec