public
Description: Ruby version of Python's doctest tool, but a bit different
Homepage: http://hobocentral.net/rubydoctest
Clone URL: git://github.com/tablatom/rubydoctest.git
rubydoctest / rubydoctest.gemspec
100644 33 lines (27 sloc) 1.184 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 = %q{rubydoctest}
  s.version = "1.0.0"
 
  s.specification_version = 2 if s.respond_to? :specification_version=
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Duane Johnson", "Tom Locke", "Dr Nic Williams"]
  s.date = %q{2008-06-21}
  s.default_executable = %q{rubydoctest}
  s.description = %q{Ruby version of Python's doctest tool, but a bit different.}
  s.email = ["duane.johnson@gmail.com"]
  s.executables = ["rubydoctest"]
  s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "website/index.txt"]
  s.files = IO.read("Manifest.txt").split("\n")
  s.has_rdoc = true
  s.homepage = %q{http://rubydoctest.rubyforge.org}
  s.post_install_message = %q{
rubydoctest comes as an executable that takes a file or directory:
rubydoctest .
rubydoctest simple.doctest
 
 
}
  s.rdoc_options = ["--main", "README.txt"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{rubydoctest}
  s.rubygems_version = %q{1.1.1}
  s.summary = %q{Ruby version of Python's doctest tool, but a bit different.}
  s.test_files = []
end