linecache 0.41-mswin32 → 0.42-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +5 -1
- data/VERSION +1 -1
- data/lib/trace_nums.so +0 -0
- metadata +9 -4
data/Rakefile
CHANGED
@@ -24,7 +24,8 @@ FILES = FileList[
|
|
24
24
|
'README',
|
25
25
|
'Rakefile',
|
26
26
|
'VERSION',
|
27
|
-
'ext/trace_nums
|
27
|
+
'ext/trace_nums.c',
|
28
|
+
'ext/trace_nums.h',
|
28
29
|
'ext/extconf.rb',
|
29
30
|
'lib/*.rb',
|
30
31
|
'test/*.rb',
|
@@ -74,6 +75,7 @@ EOF
|
|
74
75
|
spec.platform = Gem::Platform::RUBY
|
75
76
|
spec.require_path = "lib"
|
76
77
|
spec.files = FILES.to_a
|
78
|
+
spec.extensions = ["ext/extconf.rb"]
|
77
79
|
|
78
80
|
spec.required_ruby_version = '>= 1.8.2'
|
79
81
|
spec.date = Time.now
|
@@ -82,6 +84,8 @@ EOF
|
|
82
84
|
# rdoc
|
83
85
|
spec.has_rdoc = true
|
84
86
|
spec.extra_rdoc_files = ['README', 'lib/linecache.rb', 'lib/tracelines.rb']
|
87
|
+
|
88
|
+
spec.test_files = FileList['test/*.rb']
|
85
89
|
end
|
86
90
|
|
87
91
|
# Rake task to build the default package
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.42
|
data/lib/trace_nums.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: linecache
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2008-04-
|
6
|
+
version: "0.42"
|
7
|
+
date: 2008-04-11 00:00:00 -04:00
|
8
8
|
summary: Read file with caching
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -76,8 +76,13 @@ files:
|
|
76
76
|
- test/data/case4.rb
|
77
77
|
- test/short-file
|
78
78
|
- lib/trace_nums.so
|
79
|
-
test_files:
|
80
|
-
|
79
|
+
test_files:
|
80
|
+
- test/rcov-bug.rb
|
81
|
+
- test/test-tracelines.rb
|
82
|
+
- test/test-lnum.rb
|
83
|
+
- test/test-linecache.rb
|
84
|
+
- test/parse-show.rb
|
85
|
+
- test/lnum-diag.rb
|
81
86
|
rdoc_options: []
|
82
87
|
|
83
88
|
extra_rdoc_files:
|