Sha256: be639120a4ac59c0892153c6563311b9131e4f8f282e192f8173422a80c16a82
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path("../lib/html/pipeline/version", __FILE__) Gem::Specification.new do |gem| gem.name = "html-pipeline" gem.version = HTML::Pipeline::VERSION gem.license = "MIT" gem.authors = ["Ryan Tomayko", "Jerry Cheung"] gem.email = ["ryan@github.com", "jerry@github.com"] gem.description = %q{GitHub HTML processing filters and utilities} gem.summary = %q{Helpers for processing content through a chain of filters} gem.homepage = "https://github.com/jch/html-pipeline" gem.files = `git ls-files`.split $/ gem.test_files = gem.files.grep(%r{^test}) gem.require_paths = ["lib"] gem.add_dependency "gemoji", "~> 1.0" gem.add_dependency "nokogiri", RUBY_VERSION < "1.9.2" ? [">= 1.4", "< 1.6"] : "~> 1.4" gem.add_dependency "github-markdown", "~> 0.5" gem.add_dependency "sanitize", RUBY_VERSION < "1.9.2" ? [">= 2", "< 2.0.4"] : "~> 2.0" gem.add_dependency "rinku", "~> 1.7" gem.add_dependency "escape_utils", "~> 0.3" gem.add_development_dependency "activesupport", RUBY_VERSION < "1.9.3" ? [">= 2", "< 4"] : ">= 2" gem.add_development_dependency "github-linguist", "~> 2.6.2" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
html-pipeline-0.3.1 | html-pipeline.gemspec |
html-pipeline-0.3.0 | html-pipeline.gemspec |
html-pipeline-0.2.1 | html-pipeline.gemspec |