Sha256: 0cfd808f4dcaf5e2e8ec15e50c92b583f9defff7a882f1e30c8856133c27af80
Contents?: true
Size: 915 Bytes
Versions: 1
Compression:
Stored size: 915 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "rygments/version" Gem::Specification.new do |s| s.name = "rygments" s.version = Rygments::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Emil Loer"] s.email = ["emil@koffietijd.net"] s.homepage = "https://github.com/thedjinn/rygments" s.summary = %q{Rygments is a Ruby wrapper for Pygments} s.description = %q{Rygments is a Ruby wrapper for the Pygments syntax highlighter. It uses an embedded Python interpreter to get high processing throughput.} s.rubyforge_project = "rygments" 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.has_rdoc = true s.extensions = ["ext/extconf.rb"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rygments-0.1.0 | rygments.gemspec |