tablatom-rubydoctest 0.2.1 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,7 +37,7 @@
37
37
  </div>
38
38
  <%= body %>
39
39
  <p class="coda">
40
- <a href="FIXME email">FIXME full name</a>, <%= modified.pretty %><br>
40
+ <a href="mailto:duane.johnson@gmail.com">Duane Johnson</a>, <%= modified.pretty %><br>
41
41
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
42
42
  </p>
43
43
  </div>
metadata CHANGED
@@ -1,22 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tablatom-rubydoctest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
+ - Duane Johnson
7
8
  - Tom Locke
8
9
  - Dr Nic Williams
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
13
 
13
- date: 2008-05-25 00:00:00 -07:00
14
+ date: 2008-06-21 00:00:00 -07:00
14
15
  default_executable: rubydoctest
15
16
  dependencies: []
16
17
 
17
18
  description: Ruby version of Python's doctest tool, but a bit different.
18
19
  email:
19
- - drnicwilliams@gmail.com
20
+ - duane.johnson@gmail.com
20
21
  executables:
21
22
  - rubydoctest
22
23
  extensions: []
@@ -35,21 +36,34 @@ files:
35
36
  - PostInstall.txt
36
37
  - README.txt
37
38
  - Rakefile
39
+ - Ruby DocTest.tmproj
38
40
  - bin/rubydoctest
39
41
  - config/hoe.rb
40
42
  - config/requirements.rb
43
+ - lib/code_block.rb
44
+ - lib/doctest_require.rb
45
+ - lib/lines.rb
46
+ - lib/result.rb
41
47
  - lib/rubydoctest.rb
42
48
  - lib/rubydoctest/version.rb
49
+ - lib/runner.rb
50
+ - lib/special_directive.rb
51
+ - lib/statement.rb
52
+ - lib/test.rb
53
+ - rubydoctest.gemspec
43
54
  - script/console
44
55
  - script/destroy
45
56
  - script/generate
57
+ - script/rstakeout
46
58
  - script/txt2html
47
59
  - setup.rb
48
60
  - tasks/deployment.rake
61
+ - tasks/doctests.rake
49
62
  - tasks/environment.rake
50
63
  - tasks/website.rake
51
- - test/test_helper.rb
52
- - test/test_rubydoctest.rb
64
+ - textmate/DocTest (Markdown).textmate
65
+ - textmate/DocTest (Ruby).textmate
66
+ - textmate/DocTest (Text).textmate
53
67
  - website/index.html
54
68
  - website/index.txt
55
69
  - website/javascripts/rounded_corners_lite.inc.js
@@ -89,6 +103,5 @@ rubygems_version: 1.0.1
89
103
  signing_key:
90
104
  specification_version: 2
91
105
  summary: Ruby version of Python's doctest tool, but a bit different.
92
- test_files:
93
- - test/test_helper.rb
94
- - test/test_rubydoctest.rb
106
+ test_files: []
107
+
@@ -1,2 +0,0 @@
1
- require 'test/unit'
2
- require File.dirname(__FILE__) + '/../lib/rubydoctest'
@@ -1,11 +0,0 @@
1
- require File.dirname(__FILE__) + '/test_helper.rb'
2
-
3
- class TestRubydoctest < Test::Unit::TestCase
4
-
5
- def setup
6
- end
7
-
8
- def test_truth
9
- assert true
10
- end
11
- end