linecache 0.41 → 0.42
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/Rakefile +5 -1
- data/VERSION +1 -1
- metadata +62 -66
- data/ext/trace_nums.o +0 -0
- data/ext/trace_nums.so +0 -0
data/ChangeLog
CHANGED
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
|
metadata
CHANGED
@@ -1,28 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
2
4
|
name: linecache
|
3
5
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "0.
|
6
|
+
version: "0.42"
|
7
|
+
date: 2008-04-10 00:00:00 -04:00
|
8
|
+
summary: Read file with caching
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: rockyb@rubyforge.net
|
12
|
+
homepage: http://rubyforge.org/projects/rocky-hacks/linecache
|
13
|
+
rubyforge_project: rocky-hacks
|
14
|
+
description: LineCache is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.8.2
|
24
|
+
version:
|
5
25
|
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
6
29
|
authors:
|
7
30
|
- R. Bernstein
|
8
|
-
autorequire:
|
9
|
-
bindir: bin
|
10
|
-
cert_chain: []
|
11
|
-
|
12
|
-
date: 2008-04-10 00:00:00 -04:00
|
13
|
-
default_executable:
|
14
|
-
dependencies: []
|
15
|
-
|
16
|
-
description: LineCache is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times.
|
17
|
-
email: rockyb@rubyforge.net
|
18
|
-
executables: []
|
19
|
-
|
20
|
-
extensions: []
|
21
|
-
|
22
|
-
extra_rdoc_files:
|
23
|
-
- README
|
24
|
-
- lib/linecache.rb
|
25
|
-
- lib/tracelines.rb
|
26
31
|
files:
|
27
32
|
- AUTHORS
|
28
33
|
- COPYING
|
@@ -33,70 +38,61 @@ files:
|
|
33
38
|
- VERSION
|
34
39
|
- ext/trace_nums.c
|
35
40
|
- ext/trace_nums.h
|
36
|
-
- ext/trace_nums.o
|
37
|
-
- ext/trace_nums.so
|
38
41
|
- ext/extconf.rb
|
39
|
-
- lib/linecache.rb
|
40
42
|
- lib/tracelines.rb
|
41
|
-
-
|
43
|
+
- lib/linecache.rb
|
42
44
|
- test/rcov-bug.rb
|
43
45
|
- test/test-tracelines.rb
|
44
46
|
- test/test-lnum.rb
|
47
|
+
- test/test-linecache.rb
|
45
48
|
- test/parse-show.rb
|
46
49
|
- test/lnum-diag.rb
|
47
|
-
- test/data/
|
48
|
-
- test/data/
|
49
|
-
- test/data/
|
50
|
-
- test/data/if2.rb
|
51
|
-
- test/data/match3a.rb
|
52
|
-
- test/data/each1.rb
|
50
|
+
- test/data/for1.rb
|
51
|
+
- test/data/if6.rb
|
52
|
+
- test/data/comments1.rb
|
53
53
|
- test/data/if3.rb
|
54
|
-
- test/data/if4.rb
|
55
54
|
- test/data/if5.rb
|
56
|
-
- test/data/
|
57
|
-
- test/data/
|
55
|
+
- test/data/begin3.rb
|
56
|
+
- test/data/end.rb
|
58
57
|
- test/data/case1.rb
|
59
58
|
- test/data/match.rb
|
60
|
-
- test/data/
|
61
|
-
- test/data/
|
62
|
-
- test/data/case4.rb
|
59
|
+
- test/data/begin2.rb
|
60
|
+
- test/data/match3.rb
|
63
61
|
- test/data/case5.rb
|
62
|
+
- test/data/not-lit.rb
|
63
|
+
- test/data/match3a.rb
|
64
|
+
- test/data/if7.rb
|
65
|
+
- test/data/if4.rb
|
66
|
+
- test/data/case2.rb
|
67
|
+
- test/data/block2.rb
|
64
68
|
- test/data/begin1.rb
|
65
|
-
- test/data/
|
66
|
-
- test/data/
|
67
|
-
- test/data/
|
68
|
-
- test/data/
|
69
|
-
- test/data/begin3.rb
|
69
|
+
- test/data/def1.rb
|
70
|
+
- test/data/if1.rb
|
71
|
+
- test/data/class1.rb
|
72
|
+
- test/data/if2.rb
|
70
73
|
- test/data/block1.rb
|
71
|
-
- test/data/
|
72
|
-
- test/data/
|
73
|
-
- test/data/
|
74
|
+
- test/data/case3.rb
|
75
|
+
- test/data/each1.rb
|
76
|
+
- test/data/case4.rb
|
74
77
|
- test/short-file
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
+
test_files:
|
79
|
+
- test/rcov-bug.rb
|
80
|
+
- test/test-tracelines.rb
|
81
|
+
- test/test-lnum.rb
|
82
|
+
- test/test-linecache.rb
|
83
|
+
- test/parse-show.rb
|
84
|
+
- test/lnum-diag.rb
|
78
85
|
rdoc_options: []
|
79
86
|
|
80
|
-
|
81
|
-
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
-
requirements:
|
90
|
-
- - ">="
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
version: "0"
|
93
|
-
version:
|
87
|
+
extra_rdoc_files:
|
88
|
+
- README
|
89
|
+
- lib/linecache.rb
|
90
|
+
- lib/tracelines.rb
|
91
|
+
executables: []
|
92
|
+
|
93
|
+
extensions:
|
94
|
+
- ext/extconf.rb
|
94
95
|
requirements: []
|
95
96
|
|
96
|
-
|
97
|
-
rubygems_version: 1.0.1
|
98
|
-
signing_key:
|
99
|
-
specification_version: 2
|
100
|
-
summary: Read file with caching
|
101
|
-
test_files: []
|
97
|
+
dependencies: []
|
102
98
|
|
data/ext/trace_nums.o
DELETED
Binary file
|
data/ext/trace_nums.so
DELETED
Binary file
|