rubydoctest 1.1.3 → 1.1.4

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1930d4494726b6a036e87c6dd9c08ada785adf1e
4
+ data.tar.gz: f49be63bb0634c250712b2e1bd89e6914a69c820
5
+ SHA512:
6
+ metadata.gz: 82c55375b6d1a63c879ac864fa95569df679089431566f0097e359bcf110401ed337628fa6168c74217b32f4627d5516789d255a117315ff35423f61011cb953
7
+ data.tar.gz: 2395f426dca46aeae15b7ff55f8879e6b23c308fb98615ab9e0a64e0800ed813e461a9395f3af94bdd4221a253a5942984b453e3af13bac164689685e1c07a2e
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- require 'config/requirements'
2
- require 'config/hoe' # setup Hoe + all gem configuration
1
+ require File.expand_path('config/requirements')
2
+ require File.expand_path('config/hoe') # setup Hoe + all gem configuration
3
3
 
4
- Dir['tasks/**/*.rake'].each { |rake| load rake }
4
+ Dir['tasks/**/*.rake'].each { |rake| load rake }
@@ -1,10 +1,13 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'rbconfig'
4
- RUBY = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']).sub(/.*\s.*/m, '"\&"')
4
+ RUBY = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name']).sub(/.*\s.*/m, '"\&"')
5
5
 
6
6
  options, files = ARGV.partition{ |a| a =~ /^-/ }
7
7
 
8
+ runpath=File.dirname(File.dirname(__FILE__))
9
+ $: << runpath+'/lib'
10
+
8
11
  if ARGV.empty? or options.include?("-h") or options.include?("--help")
9
12
  require 'rubydoctest/version'
10
13
  puts <<-DIRECTIONS
@@ -2,7 +2,7 @@ module Rubydoctest #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 1
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "rubydoctest"
3
- s.version = "1.1.3"
3
+ s.version = "1.1.4"
4
4
 
5
5
  s.specification_version = 2 if s.respond_to? :specification_version=
6
6
 
metadata CHANGED
@@ -1,55 +1,31 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: rubydoctest
3
- version: !ruby/object:Gem::Version
4
- hash: 21
5
- prerelease:
6
- segments:
7
- - 1
8
- - 1
9
- - 3
10
- version: 1.1.3
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.4
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Duane Johnson
14
8
  - Tom Locke
15
9
  - Dr Nic Williams
16
10
  autorequire:
17
11
  bindir: bin
18
12
  cert_chain: []
19
-
20
- date: 2011-02-27 00:00:00 -05:00
21
- default_executable:
22
- dependencies:
23
- - !ruby/object:Gem::Dependency
24
- name: hoe
25
- prerelease: false
26
- requirement: &id001 !ruby/object:Gem::Requirement
27
- none: false
28
- requirements:
29
- - - ">="
30
- - !ruby/object:Gem::Version
31
- hash: 41
32
- segments:
33
- - 2
34
- - 9
35
- - 1
36
- version: 2.9.1
37
- type: :development
38
- version_requirements: *id001
13
+ date: 2008-12-06 00:00:00.000000000 Z
14
+ dependencies: []
39
15
  description: Ruby version of Python's doctest tool, but a bit different.
40
- email: duane.johnson@gmail.com
41
- executables:
16
+ email:
17
+ - duane.johnson@gmail.com
18
+ executables:
42
19
  - rubydoctest
43
20
  extensions: []
44
-
45
- extra_rdoc_files:
21
+ extra_rdoc_files:
46
22
  - History.txt
47
23
  - License.txt
48
24
  - Manifest.txt
49
25
  - PostInstall.txt
50
26
  - README.txt
51
27
  - website/index.txt
52
- files:
28
+ files:
53
29
  - History.txt
54
30
  - License.txt
55
31
  - Manifest.txt
@@ -88,48 +64,30 @@ files:
88
64
  - website/javascripts/rounded_corners_lite.inc.js
89
65
  - website/stylesheets/screen.css
90
66
  - website/template.html.erb
91
- - .gemtest
92
- has_rdoc: true
93
67
  homepage: http://rubydoctest.rubyforge.org
94
68
  licenses: []
95
-
96
- post_install_message: |+
97
-
98
- rubydoctest comes as an executable that takes a list of files:
99
-
100
- rubydoctest lib/*.rb
101
- rubydoctest simple.doctest
102
-
103
-
104
- rdoc_options:
105
- - --main
69
+ metadata: {}
70
+ post_install_message: "\nrubydoctest comes as an executable that takes a file or directory:\n\t\n
71
+ \ rubydoctest .\n\trubydoctest simple.doctest\n\n\n"
72
+ rdoc_options:
73
+ - "--main"
106
74
  - README.txt
107
- require_paths:
75
+ require_paths:
108
76
  - lib
109
- required_ruby_version: !ruby/object:Gem::Requirement
110
- none: false
111
- requirements:
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ requirements:
112
79
  - - ">="
113
- - !ruby/object:Gem::Version
114
- hash: 3
115
- segments:
116
- - 0
117
- version: "0"
118
- required_rubygems_version: !ruby/object:Gem::Requirement
119
- none: false
120
- requirements:
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
121
84
  - - ">="
122
- - !ruby/object:Gem::Version
123
- hash: 3
124
- segments:
125
- - 0
126
- version: "0"
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
127
87
  requirements: []
128
-
129
88
  rubyforge_project: rubydoctest
130
- rubygems_version: 1.4.2
89
+ rubygems_version: 2.2.2
131
90
  signing_key:
132
- specification_version: 3
91
+ specification_version: 2
133
92
  summary: Ruby version of Python's doctest tool, but a bit different.
134
93
  test_files: []
135
-
data/.gemtest DELETED
File without changes