linecache 0.41 → 0.42

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.
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ 2008-04-10 20:06 Rocky Bernstein
2
+
3
+ * NEWS: What's new for 0.41.
4
+
1
5
  2008-04-10 20:02 Rocky Bernstein
2
6
 
3
7
  * ChangeLog, Rakefile, VERSION: Forgot to add test/data to the gem.
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.41
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.41"
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
- - test/test-linecache.rb
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/def1.rb
48
- - test/data/if1.rb
49
- - test/data/match3.rb
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/class1.rb
57
- - test/data/not-lit.rb
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/case2.rb
61
- - test/data/case3.rb
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/end.rb
66
- - test/data/comments1.rb
67
- - test/data/begin2.rb
68
- - test/data/for1.rb
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/block2.rb
72
- - test/data/if6.rb
73
- - test/data/if7.rb
74
+ - test/data/case3.rb
75
+ - test/data/each1.rb
76
+ - test/data/case4.rb
74
77
  - test/short-file
75
- has_rdoc: true
76
- homepage: http://rubyforge.org/projects/rocky-hacks/linecache
77
- post_install_message:
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
- require_paths:
81
- - lib
82
- required_ruby_version: !ruby/object:Gem::Requirement
83
- requirements:
84
- - - ">="
85
- - !ruby/object:Gem::Version
86
- version: 1.8.2
87
- version:
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
- rubyforge_project: rocky-hacks
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
 
Binary file
Binary file