public
Description: JavaScript inline documentation parser
Homepage: http://pdoc.org
Clone URL: git://github.com/tobie/pdoc.git
commit  060cbedb6551cd288d3d16b63c6af163423a36c2
tree    c75aa1ef4d08db97c4978771e9a4df4bfdf0d66a
parent  1c0ef0251951cd3fdf7529bf079d3480d589179c
pdoc / pdoc.gemspec
100644 33 lines (28 sloc) 1.03 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
33
Gem::Specification.new do |s|
  s.name = "pdoc"
  s.version = "0.1.0"
  s.date = "2008-11-17"
  s.summary = "Inline comment parser and JavaScript documentation generator"
  s.email = "tobie.langel@gmail.com"
  s.homepage = "http://pdoc.org/"
  s.description = "PDoc is an inline comment parser and JavaScript documentation generator written in Ruby. It is designed for documenting Prototype and Prototype-based libraries."
  s.has_rdoc = true
  s.authors = ["Tobie Langel"]
  s.files = [
        "CHANGELOG",
"README.markdown",
"Rakefile",
"pdoc.gemspec"] +
Dir['lib/**/*'] +
        Dir['templates/**/*']
  
  s.autorequire = "lib/pdoc.rb"
  
  s.bindir = "bin"
  s.executables = ["pdoc"]
  s.default_executable = "pdoc"
  
  s.test_files = Dir['test/**/*.rb']
  s.rdoc_options = ["--main", "README.markdown"]
  s.extra_rdoc_files = ["CHANGELOG", "README.markdown"]
  s.add_dependency("BlueCloth", ["> 0.0.0"])
  s.add_dependency("treetop", ["> 0.0.0"])
  s.add_dependency("oyster", ["> 0.0.0"])
end