-
Notifications
You must be signed in to change notification settings - Fork 14
/
rubydoctest.gemspec
72 lines (67 loc) · 2.07 KB
/
rubydoctest.gemspec
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Gem::Specification.new do |s|
s.name = "rubydoctest"
s.version = "1.1.5"
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 = "2014-12-31"
s.default_executable = "rubydoctest"
s.description = "Ruby version of Python's doctest tool, but a bit different."
s.email = ["[email protected]"]
s.executables = ["rubydoctest"]
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "website/index.txt"]
manifest = <<-MANIFEST
History.txt
License.txt
Manifest.txt
PostInstall.txt
README.txt
Rakefile
bin/rubydoctest
config/hoe.rb
config/requirements.rb
lib/code_block.rb
lib/doctest_require.rb
lib/lines.rb
lib/result.rb
lib/rubydoctest.rb
lib/rubydoctest/version.rb
lib/runner.rb
lib/special_directive.rb
lib/statement.rb
lib/test.rb
rubydoctest.gemspec
script/console
script/destroy
script/generate
script/rstakeout
script/txt2html
setup.rb
tasks/deployment.rake
tasks/doctests.rake
tasks/environment.rake
tasks/website.rake
textmate/DocTest (Markdown).textmate
textmate/DocTest (Ruby).textmate
textmate/DocTest (Text).textmate
website/index.html
website/index.txt
website/javascripts/rounded_corners_lite.inc.js
website/stylesheets/screen.css
website/template.html.erb
MANIFEST
s.files = manifest.strip.split("\n").map{|m| m.strip}
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