ddollar / albino forked from github/albino

Ruby wrapper for the Pygments syntax highlighter.

This URL has Read+Write access

albino / albino.gemspec
100644 32 lines (20 sloc) 0.736 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
spec = Gem::Specification.new do |s|
 
  s.name = "albino"
  s.version = "1.0.4"
  s.summary = "Ruby wrapper for Pygments syntax-highlighting library"
  s.homepage = "http://github.com/ddollar/albino"
 
  s.description = <<-DESCRIPTION
 
Albino is an interface to the Python-based Pygments library. The code was all
written by Chris Wanstrath and can be found at
http://github.com/github/albino
 
David Dollar wrapped it in a gem.
 
 
DESCRIPTION
 
  s.author = "David Dollar"
  s.email = "ddollar@gmail.com"
 
  s.files = ["lib/albino.rb"]
  s.platform = Gem::Platform::RUBY
 
  s.rubyforge_project = "albino"
  s.require_path = "lib"
  s.has_rdoc = true
  s.extra_rdoc_files = ["README.rdoc"]
 
end