amalgalite 0.15.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. data/{HISTORY → HISTORY.rdoc} +15 -1
  2. data/{README → README.rdoc} +2 -1
  3. data/examples/filestore.db +0 -0
  4. data/examples/gems.db +0 -0
  5. data/ext/amalgalite/amalgalite3.c +1 -1
  6. data/ext/amalgalite/amalgalite3_blob.c +1 -1
  7. data/ext/amalgalite/amalgalite3_constants.c +157 -0
  8. data/ext/amalgalite/amalgalite3_database.c +7 -7
  9. data/ext/amalgalite/amalgalite3_requires_bootstrap.c +11 -12
  10. data/ext/amalgalite/amalgalite3_statement.c +3 -3
  11. data/ext/amalgalite/extconf.rb +17 -20
  12. data/ext/amalgalite/gen_constants.rb +84 -25
  13. data/ext/amalgalite/sqlite3.c +3379 -1146
  14. data/ext/amalgalite/sqlite3.h +87 -12
  15. data/ext/amalgalite/sqlite3ext.h +42 -0
  16. data/gemspec.rb +9 -9
  17. data/lib/amalgalite/csv_table_importer.rb +7 -2
  18. data/lib/amalgalite/database.rb +1 -1
  19. data/lib/amalgalite/paths.rb +10 -0
  20. data/lib/amalgalite/sqlite3/constants.rb +20 -5
  21. data/lib/amalgalite/version.rb +2 -2
  22. data/spec/database_spec.rb +0 -2
  23. data/spec/default_map_spec.rb +0 -3
  24. data/spec/requires_spec.rb +0 -3
  25. data/spec/rtree_spec.rb +1 -3
  26. data/spec/schema_spec.rb +1 -4
  27. data/spec/spec_helper.rb +7 -5
  28. data/spec/sqlite3/constants_spec.rb +52 -9
  29. data/spec/sqlite3/database_status_spec.rb +1 -1
  30. data/spec/sqlite3/version_spec.rb +5 -5
  31. data/spec/storage_map_spec.rb +1 -4
  32. data/spec/tap_spec.rb +1 -3
  33. data/spec/text_map_spec.rb +1 -4
  34. data/spec/type_map_spec.rb +1 -4
  35. data/tasks/announce.rake +9 -9
  36. data/tasks/config.rb +18 -18
  37. data/tasks/extension.rake +37 -20
  38. data/tasks/rspec.rake +7 -10
  39. metadata +29 -42
  40. data/tasks/rubyforge.rake +0 -59
@@ -7,13 +7,6 @@ describe Amalgalite::SQLite3::Constants do
7
7
  it "has Open constants" do
8
8
  Amalgalite::SQLite3::Constants::Open::READONLY.should > 0
9
9
  end
10
-
11
- it "has DataType constants" do
12
- Amalgalite::SQLite3::Constants::DataType::BLOB.should > 0
13
- end
14
-
15
- it "has ResultCode constants" do
16
- end
17
10
 
18
11
  describe 'ResultCode' do
19
12
  it "has constants" do
@@ -31,6 +24,40 @@ describe Amalgalite::SQLite3::Constants do
31
24
  end
32
25
  end
33
26
 
27
+ describe "DataType" do
28
+ it "has constants" do
29
+ Amalgalite::SQLite3::Constants::DataType::NULL.should == 5
30
+ end
31
+
32
+ it "can return the constant from a number" do
33
+ c = Amalgalite::SQLite3::Constants::DataType.name_from_value( 5 )
34
+ c.should == "NULL"
35
+ end
36
+
37
+ it "can return the number from a name" do
38
+ v = Amalgalite::SQLite3::Constants::DataType.value_from_name( "Null" )
39
+ v.should == 5
40
+ end
41
+
42
+ end
43
+
44
+ describe "Config" do
45
+ it "has constants" do
46
+ Amalgalite::SQLite3::Constants::Config::HEAP.should == 8
47
+ end
48
+
49
+ it "can return the constant from a number" do
50
+ c = Amalgalite::SQLite3::Constants::Config.name_from_value( 8 )
51
+ c.should == "HEAP"
52
+ end
53
+
54
+ it "can return the number from a name" do
55
+ v = Amalgalite::SQLite3::Constants::Config.value_from_name( "heap" )
56
+ v.should == 8
57
+ end
58
+
59
+ end
60
+
34
61
  describe 'Status' do
35
62
  it "has constants" do
36
63
  Amalgalite::SQLite3::Constants::Status::MEMORY_USED.should == 0
@@ -40,7 +67,7 @@ describe Amalgalite::SQLite3::Constants do
40
67
  c = Amalgalite::SQLite3::Constants::Status.name_from_value( 3 )
41
68
  c.should == "SCRATCH_USED"
42
69
  end
43
-
70
+
44
71
  it "can return the number from a name" do
45
72
  v = Amalgalite::SQLite3::Constants::Status.value_from_name( "memory_used" )
46
73
  v.should == 0
@@ -56,10 +83,26 @@ describe Amalgalite::SQLite3::Constants do
56
83
  c = Amalgalite::SQLite3::Constants::DBStatus.name_from_value( 0 )
57
84
  c.should == "LOOKASIDE_USED"
58
85
  end
59
-
86
+
60
87
  it "can return the number from a name" do
61
88
  v = Amalgalite::SQLite3::Constants::DBStatus.value_from_name( "lookaside_used" )
62
89
  v.should == 0
63
90
  end
64
91
  end
92
+
93
+ describe "StatementStatus" do
94
+ it "has constants" do
95
+ Amalgalite::SQLite3::Constants::StatementStatus::AUTOINDEX.should == 3
96
+ end
97
+
98
+ it "can return the constant from a number" do
99
+ c = Amalgalite::SQLite3::Constants::StatementStatus.name_from_value( 3 )
100
+ c.should == "AUTOINDEX"
101
+ end
102
+
103
+ it "can return the number from a name" do
104
+ v = Amalgalite::SQLite3::Constants::StatementStatus.value_from_name( "autoindex" )
105
+ v.should == 3
106
+ end
107
+ end
65
108
  end
@@ -13,7 +13,7 @@ describe "Amalgalite::SQLite3::Database::Status" do
13
13
 
14
14
  after(:each) do
15
15
  @db.close
16
- FileUtils.rm_f "lookaside-test.db"
16
+ ::FileUtils.rm_f "lookaside-test.db"
17
17
  end
18
18
 
19
19
 
@@ -7,16 +7,16 @@ describe "Amalgalite::SQLite3::Version" do
7
7
  Amalgalite::SQLite3::Version.to_s.should =~ /\d\.\d\.\d/
8
8
  Amalgalite::SQLite3::Version.runtime_version.should =~ /\d\.\d\.\d/
9
9
 
10
- Amalgalite::SQLite3::Version.to_i.should eql(3007003)
11
- Amalgalite::SQLite3::Version.runtime_version_number.should eql(3007003)
10
+ Amalgalite::SQLite3::Version.to_i.should eql(3007004)
11
+ Amalgalite::SQLite3::Version.runtime_version_number.should eql(3007004)
12
12
 
13
13
  Amalgalite::SQLite3::Version::MAJOR.should eql(3)
14
14
  Amalgalite::SQLite3::Version::MINOR.should eql(7)
15
- Amalgalite::SQLite3::Version::RELEASE.should eql(3)
15
+ Amalgalite::SQLite3::Version::RELEASE.should eql(4)
16
16
  Amalgalite::SQLite3::Version.to_a.should have(3).items
17
17
 
18
- Amalgalite::SQLite3::Version.compiled_version.should == "3.7.3"
19
- Amalgalite::SQLite3::Version.compiled_version_number.should == 3007003
18
+ Amalgalite::SQLite3::Version.compiled_version.should == "3.7.4"
19
+ Amalgalite::SQLite3::Version.compiled_version_number.should == 3007004
20
20
  Amalgalite::SQLite3::Version.compiled_matches_runtime?.should == true
21
21
  end
22
22
  end
@@ -1,7 +1,4 @@
1
- require 'rubygems'
2
- require 'spec'
3
-
4
- $: << File.expand_path(File.join(File.dirname(__FILE__),"..","lib"))
1
+ require File.expand_path( File.join( File.dirname( __FILE__ ), "spec_helper.rb" ) )
5
2
  require 'amalgalite/type_maps/storage_map'
6
3
 
7
4
  describe Amalgalite::TypeMaps::StorageMap do
@@ -1,7 +1,5 @@
1
- require 'rubygems'
2
- require 'spec'
1
+ require File.expand_path( File.join( File.dirname( __FILE__ ), "spec_helper.rb" ) )
3
2
 
4
- $: << File.expand_path(File.join(File.dirname(__FILE__),"..","lib"))
5
3
  require 'amalgalite'
6
4
  require 'amalgalite/trace_tap'
7
5
  require 'amalgalite/profile_tap'
@@ -1,7 +1,4 @@
1
- require 'rubygems'
2
- require 'spec'
3
-
4
- $: << File.expand_path(File.join(File.dirname(__FILE__),"..","lib"))
1
+ require File.expand_path( File.join( File.dirname( __FILE__ ), "spec_helper.rb" ) )
5
2
  require 'amalgalite/type_maps/text_map'
6
3
 
7
4
  describe Amalgalite::TypeMaps::TextMap do
@@ -1,7 +1,4 @@
1
- require 'rubygems'
2
- require 'spec'
3
-
4
- $: << File.expand_path(File.join(File.dirname(__FILE__),"..","lib"))
1
+ require File.expand_path( File.join( File.dirname( __FILE__ ), "spec_helper.rb" ) )
5
2
  require 'amalgalite/type_map'
6
3
 
7
4
  describe Amalgalite::TypeMap do
@@ -17,21 +17,21 @@ namespace :announce do
17
17
  mail.puts
18
18
  mail.puts info[:title]
19
19
  mail.puts
20
- mail.puts "{{ Release notes for Version #{Amalgalite::VERSION} }}"
20
+ mail.puts "#{info[:urls]}"
21
21
  mail.puts
22
- mail.puts info[:release_notes]
23
- mail.puts
24
- mail.puts " #{info[:urls]}"
22
+ mail.puts "=== Description"
23
+ mail.puts
24
+ mail.puts info[:description]
25
25
  mail.puts
26
26
  mail.puts "=== Installation"
27
27
  mail.puts
28
28
  mail.puts " gem install #{Amalgalite::GEM_SPEC.name}"
29
- mail.puts
30
- mail.puts "=== Description"
31
29
  mail.puts
32
- mail.puts info[:description]
33
- mail.puts
34
- end
30
+ mail.puts "{{ Release notes for Version #{Amalgalite::VERSION} }}"
31
+ mail.puts
32
+ mail.puts info[:release_notes]
33
+ mail.puts
34
+ end
35
35
  puts "Created the following as email.txt:"
36
36
  puts "-" * 72
37
37
  puts File.read("email.txt")
@@ -1,4 +1,5 @@
1
1
  require 'configuration'
2
+ require 'yaml'
2
3
 
3
4
  require 'rake'
4
5
  require 'tasks/utils'
@@ -11,12 +12,12 @@ Configuration.for('project') {
11
12
  version Amalgalite::Version.to_s
12
13
  author "Jeremy Hinegardner"
13
14
  email "jeremy at copiousfreetime dot org"
14
- homepage "http://copiousfreetime.rubyforge.org/amalgalite/"
15
- description Utils.section_of("README", "description")
15
+ homepage "http://www.copiousfreetime.org/projects/amalgalite/"
16
+ description Utils.section_of("README.rdoc", "description")
16
17
  summary description.split(".").first
17
- history "HISTORY"
18
- license FileList["LICENSE"]
19
- readme "README"
18
+ history "HISTORY.rdoc"
19
+ license ::FileList["LICENSE"]
20
+ readme "README.rdoc"
20
21
  }
21
22
 
22
23
  #-----------------------------------------------------------------------
@@ -26,15 +27,15 @@ Configuration.for('packaging') {
26
27
  # files in the project
27
28
  proj_conf = Configuration.for('project')
28
29
  files {
29
- bin FileList["bin/*"]
30
- ext FileList["ext/amalgalite/*.{c,h,rb}"]
31
- examples FileList["examples/*"]
32
- lib FileList["lib/**/*.rb"]
33
- test FileList["spec/**/*.rb", "test/**/*.rb", ]
34
- data FileList["data/**/*", "spec/data/*.{sql,txt,sh}"]
35
- tasks FileList["tasks/**/*.r{ake,b}"]
36
- rdoc FileList[proj_conf.readme, proj_conf.history,
37
- proj_conf.license] + lib + FileList["ext/amalgalite3*.c"]
30
+ bin ::FileList["bin/*"]
31
+ ext ::FileList["ext/amalgalite/*.{c,h,rb}"]
32
+ examples ::FileList["examples/*"]
33
+ lib ::FileList["lib/**/*.rb"]
34
+ test ::FileList["spec/**/*.rb", "test/**/*.rb", ]
35
+ data ::FileList["data/**/*", "spec/data/*.{sql,txt,sh}"]
36
+ tasks ::FileList["tasks/**/*.r{ake,b}"]
37
+ rdoc ::FileList[proj_conf.readme, proj_conf.history,
38
+ proj_conf.license] + lib + ::FileList["ext/amalgalite3*.c"]
38
39
  all bin + ext + examples + lib + test + data + rdoc + tasks
39
40
  }
40
41
 
@@ -61,7 +62,7 @@ Configuration.for("rubygem") {
61
62
  Configuration.for('test') {
62
63
  mode "spec"
63
64
  files Configuration.for("packaging").files.test
64
- options %w[ --format profile --color ]
65
+ options %w[ --format documentation --color ]
65
66
  ruby_opts %w[ ]
66
67
  }
67
68
 
@@ -69,9 +70,8 @@ Configuration.for('test') {
69
70
  # Rcov
70
71
  #-----------------------------------------------------------------------
71
72
  Configuration.for('rcov') {
72
- output_dir "coverage"
73
73
  libs %w[ lib ]
74
- rcov_opts %w[ --html ]
74
+ rcov_opts %w[ --html -o coverage ]
75
75
  ruby_opts %w[ ]
76
76
  test_files Configuration.for('packaging').files.test
77
77
  }
@@ -92,7 +92,7 @@ Configuration.for('rdoc') {
92
92
  #-----------------------------------------------------------------------
93
93
  Configuration.for('extension') {
94
94
  configs Configuration.for('packaging').files.ext.find_all { |x| %w[ extconf.rb ].include?(File.basename(x)) }
95
- cross_rbconfig YAML.load_file( File.expand_path("~/.rake-compiler/config.yml"))
95
+ cross_rbconfig ::YAML.load_file( File.expand_path("~/.rake-compiler/config.yml"))
96
96
  }
97
97
 
98
98
  #-----------------------------------------------------------------------
@@ -1,7 +1,10 @@
1
1
  require 'tasks/config'
2
2
  require 'pathname'
3
- require 'zlib'
4
- require 'archive/tar/minitar'
3
+ begin
4
+ require 'zip/zipfilesystem'
5
+ rescue
6
+ abort "rake development_dependencies"
7
+ end
5
8
 
6
9
  #-----------------------------------------------------------------------
7
10
  # Extensions
@@ -42,7 +45,17 @@ if ext_config = Configuration.for_if_exist?('extension') then
42
45
  end
43
46
  end
44
47
 
45
- def build_win( version = "1.8.6" )
48
+ def myruby
49
+ require 'rbconfig'
50
+ x = File.join(
51
+ RbConfig::CONFIG['bindir'],
52
+ RbConfig::CONFIG['ruby_install_name']
53
+ )
54
+ #puts "myruby = #{x}"
55
+ return x
56
+ end
57
+
58
+ def build_win( version = "1.8.7" )
46
59
  ext_config = Configuration.for("extension")
47
60
  rbconfig = ext_config.cross_rbconfig["rbconfig-#{version}"]
48
61
  raise ArgumentError, "No cross compiler for version #{version}, we have #{ext_config.cross_rbconfig.keys.join(",")}" unless rbconfig
@@ -58,7 +71,7 @@ if ext_config = Configuration.for_if_exist?('extension') then
58
71
  cp "#{rbconfig}", "rbconfig.rb"
59
72
  rubylib = ENV['RUBYLIB']
60
73
  ENV['RUBYLIB'] = "."
61
- sh %[ #{rvm} #{version} -S extconf.rb ]
74
+ sh %[ #{rvm} #{version} -S extconf.rb #{myruby} ]
62
75
  ENV['RUBYLIB'] = rubylib
63
76
  sh "make"
64
77
  end
@@ -159,10 +172,18 @@ if ext_config = Configuration.for_if_exist?('extension') then
159
172
 
160
173
  desc "Download and integrate the next version of sqlite (use VERSION=x.y.z)"
161
174
  task :update_sqlite do
162
- next_version = ENV['VERSION']
175
+ parts = ENV['VERSION'].split(".")
176
+ next_version = [ parts.shift.to_s ]
177
+ parts.each do |p|
178
+ next_version << "#{"%02d" % p }"
179
+ end
180
+ next_version << "00" if next_version.size == 3
181
+
182
+ next_version = next_version.join('')
183
+
163
184
  raise "VERSION env variable must be set" unless next_version
164
- puts "downloading ..."
165
- url = URI.parse("http://sqlite.org/sqlite-amalgamation-#{next_version}.tar.gz")
185
+ url = URI.parse("http://sqlite.org/sqlite-amalgamation-#{next_version}.zip")
186
+ puts "downloading #{url.to_s} ..."
166
187
  file = "tmp/#{File.basename( url.path ) }"
167
188
  FileUtils.mkdir "tmp" unless File.directory?( "tmp" )
168
189
  File.open( file, "wb+") do |f|
@@ -172,19 +193,15 @@ if ext_config = Configuration.for_if_exist?('extension') then
172
193
 
173
194
  puts "extracting..."
174
195
  upstream_files = %w[ sqlite3.h sqlite3.c sqlite3ext.h ]
175
- Zlib::GzipReader.open( file ) do |tgz|
176
- Archive::Tar::Minitar::Reader.open( tgz ) do |tar|
177
- tar.each_entry do |entry|
178
- bname = File.basename( entry.full_name )
179
- if upstream_files.include?( bname ) then
180
- dest_file = File.join( "ext", "amalgalite", bname )
181
- puts "updating #{ dest_file }"
182
- File.open( dest_file, "wb" ) do |df|
183
- while bytes = entry.read do
184
- df.write bytes
185
- end
186
- end
187
- end
196
+ Zip::ZipInputStream.open( file ) do |io|
197
+ loop do
198
+ entry = io.get_next_entry
199
+ break unless entry
200
+ bname = File.basename( entry.name )
201
+ if upstream_files.include?( bname ) then
202
+ dest_file = File.join( "ext", "amalgalite", bname )
203
+ puts "updating #{dest_file}"
204
+ entry.extract( dest_file ) { true }
188
205
  end
189
206
  end
190
207
  end
@@ -10,19 +10,16 @@ if spec_config = Configuration.for_if_exist?("test") then
10
10
 
11
11
  task :default => :spec
12
12
 
13
- require 'spec/rake/spectask'
14
- rs = Spec::Rake::SpecTask.new do |r|
13
+ require 'rspec/core/rake_task'
14
+ rs = RSpec::Core::RakeTask.new do |r|
15
15
  r.ruby_opts = spec_config.ruby_opts
16
- r.libs = [ Amalgalite::Paths.lib_path,
17
- Amalgalite::Paths.ext_path,
18
- Amalgalite::Paths.root_dir ]
19
- r.spec_files = spec_config.files
20
- r.spec_opts = spec_config.options
21
- #r.warning = true
16
+ #r.rspec_path = [ Amalgalite::Paths.lib_path,
17
+ #Amalgalite::Paths.ext_path,
18
+ #Amalgalite::Paths.root_dir ]
19
+ r.rspec_opts = spec_config.options
22
20
 
23
21
  if rcov_config = Configuration.for_if_exist?('rcov') then
24
- r.rcov = true
25
- r.rcov_dir = rcov_config.output_dir
22
+ r.rcov = false
26
23
  r.rcov_opts = rcov_config.rcov_opts
27
24
  end
28
25
  end
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amalgalite
3
3
  version: !ruby/object:Gem::Version
4
- hash: 35
5
4
  prerelease: false
6
5
  segments:
6
+ - 1
7
7
  - 0
8
- - 15
9
8
  - 0
10
- version: 0.15.0
9
+ version: 1.0.0
11
10
  platform: ruby
12
11
  authors:
13
12
  - Jeremy Hinegardner
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-10-30 00:00:00 -06:00
17
+ date: 2011-01-16 00:00:00 -07:00
19
18
  default_executable:
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
@@ -26,12 +25,11 @@ dependencies:
26
25
  requirements:
27
26
  - - ~>
28
27
  - !ruby/object:Gem::Version
29
- hash: 35
30
28
  segments:
31
29
  - 4
32
30
  - 7
33
- - 0
34
- version: 4.7.0
31
+ - 4
32
+ version: 4.7.4
35
33
  type: :runtime
36
34
  version_requirements: *id001
37
35
  - !ruby/object:Gem::Dependency
@@ -42,12 +40,11 @@ dependencies:
42
40
  requirements:
43
41
  - - ~>
44
42
  - !ruby/object:Gem::Version
45
- hash: 5
46
43
  segments:
47
44
  - 1
48
45
  - 5
49
- - 3
50
- version: 1.5.3
46
+ - 4
47
+ version: 1.5.4
51
48
  type: :runtime
52
49
  version_requirements: *id002
53
50
  - !ruby/object:Gem::Dependency
@@ -58,12 +55,11 @@ dependencies:
58
55
  requirements:
59
56
  - - ~>
60
57
  - !ruby/object:Gem::Version
61
- hash: 55
62
58
  segments:
63
59
  - 0
64
60
  - 8
65
- - 4
66
- version: 0.8.4
61
+ - 7
62
+ version: 0.8.7
67
63
  type: :development
68
64
  version_requirements: *id003
69
65
  - !ruby/object:Gem::Dependency
@@ -74,12 +70,11 @@ dependencies:
74
70
  requirements:
75
71
  - - ~>
76
72
  - !ruby/object:Gem::Version
77
- hash: 21
78
73
  segments:
74
+ - 1
75
+ - 2
79
76
  - 0
80
- - 0
81
- - 5
82
- version: 0.0.5
77
+ version: 1.2.0
83
78
  type: :development
84
79
  version_requirements: *id004
85
80
  - !ruby/object:Gem::Dependency
@@ -90,12 +85,11 @@ dependencies:
90
85
  requirements:
91
86
  - - ~>
92
87
  - !ruby/object:Gem::Version
93
- hash: 27
94
88
  segments:
95
- - 1
96
- - 2
97
89
  - 2
98
- version: 1.2.2
90
+ - 4
91
+ - 0
92
+ version: 2.4.0
99
93
  type: :development
100
94
  version_requirements: *id005
101
95
  - !ruby/object:Gem::Dependency
@@ -106,28 +100,26 @@ dependencies:
106
100
  requirements:
107
101
  - - ~>
108
102
  - !ruby/object:Gem::Version
109
- hash: 11
110
103
  segments:
111
104
  - 0
105
+ - 7
112
106
  - 5
113
- - 0
114
- version: 0.5.0
107
+ version: 0.7.5
115
108
  type: :development
116
109
  version_requirements: *id006
117
110
  - !ruby/object:Gem::Dependency
118
- name: archive-tar-minitar
111
+ name: zip
119
112
  prerelease: false
120
113
  requirement: &id007 !ruby/object:Gem::Requirement
121
114
  none: false
122
115
  requirements:
123
116
  - - ~>
124
117
  - !ruby/object:Gem::Version
125
- hash: 15
126
118
  segments:
119
+ - 2
127
120
  - 0
128
- - 5
129
121
  - 2
130
- version: 0.5.2
122
+ version: 2.0.2
131
123
  type: :development
132
124
  version_requirements: *id007
133
125
  - !ruby/object:Gem::Dependency
@@ -138,14 +130,11 @@ dependencies:
138
130
  requirements:
139
131
  - - ~>
140
132
  - !ruby/object:Gem::Version
141
- hash: 63
142
133
  segments:
143
134
  - 0
144
- - 8
145
- - 1
146
- - 2
147
- - 0
148
- version: 0.8.1.2.0
135
+ - 9
136
+ - 9
137
+ version: 0.9.9
149
138
  type: :development
150
139
  version_requirements: *id008
151
140
  description: |-
@@ -173,8 +162,8 @@ executables:
173
162
  extensions:
174
163
  - ext/amalgalite/extconf.rb
175
164
  extra_rdoc_files:
176
- - README
177
- - HISTORY
165
+ - README.rdoc
166
+ - HISTORY.rdoc
178
167
  - LICENSE
179
168
  - lib/amalgalite/aggregate.rb
180
169
  - lib/amalgalite/blob.rb
@@ -232,6 +221,7 @@ files:
232
221
  - examples/bootstrap.rb
233
222
  - examples/define_aggregate.rb
234
223
  - examples/define_function.rb
224
+ - examples/filestore.db
235
225
  - examples/gem-db.rb
236
226
  - examples/gems.db
237
227
  - examples/require_me.rb
@@ -305,15 +295,14 @@ files:
305
295
  - spec/data/iso-3166-country.txt
306
296
  - spec/data/iso-3166-subcountry.txt
307
297
  - spec/data/make-iso-db.sh
308
- - README
309
- - HISTORY
298
+ - README.rdoc
299
+ - HISTORY.rdoc
310
300
  - LICENSE
311
301
  - tasks/announce.rake
312
302
  - tasks/distribution.rake
313
303
  - tasks/documentation.rake
314
304
  - tasks/extension.rake
315
305
  - tasks/rspec.rake
316
- - tasks/rubyforge.rake
317
306
  - tasks/config.rb
318
307
  - tasks/utils.rb
319
308
  - gemspec.rb
@@ -324,7 +313,7 @@ licenses: []
324
313
  post_install_message:
325
314
  rdoc_options:
326
315
  - --main
327
- - README
316
+ - README.rdoc
328
317
  require_paths:
329
318
  - lib
330
319
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -332,7 +321,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
332
321
  requirements:
333
322
  - - ">="
334
323
  - !ruby/object:Gem::Version
335
- hash: 3
336
324
  segments:
337
325
  - 0
338
326
  version: "0"
@@ -341,7 +329,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
341
329
  requirements:
342
330
  - - ">="
343
331
  - !ruby/object:Gem::Version
344
- hash: 3
345
332
  segments:
346
333
  - 0
347
334
  version: "0"