amalgalite 0.15.0-x86-mswin32 → 1.0.0-x86-mswin32

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.
Files changed (42) 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/1.8/amalgalite3.so +0 -0
  18. data/lib/amalgalite/1.9/amalgalite3.so +0 -0
  19. data/lib/amalgalite/csv_table_importer.rb +7 -2
  20. data/lib/amalgalite/database.rb +1 -1
  21. data/lib/amalgalite/paths.rb +10 -0
  22. data/lib/amalgalite/sqlite3/constants.rb +20 -5
  23. data/lib/amalgalite/version.rb +2 -2
  24. data/spec/database_spec.rb +0 -2
  25. data/spec/default_map_spec.rb +0 -3
  26. data/spec/requires_spec.rb +0 -3
  27. data/spec/rtree_spec.rb +1 -3
  28. data/spec/schema_spec.rb +1 -4
  29. data/spec/spec_helper.rb +7 -5
  30. data/spec/sqlite3/constants_spec.rb +52 -9
  31. data/spec/sqlite3/database_status_spec.rb +1 -1
  32. data/spec/sqlite3/version_spec.rb +5 -5
  33. data/spec/storage_map_spec.rb +1 -4
  34. data/spec/tap_spec.rb +1 -3
  35. data/spec/text_map_spec.rb +1 -4
  36. data/spec/type_map_spec.rb +1 -4
  37. data/tasks/announce.rake +9 -9
  38. data/tasks/config.rb +18 -18
  39. data/tasks/extension.rake +37 -20
  40. data/tasks/rspec.rake +7 -10
  41. metadata +40 -42
  42. 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
data/spec/tap_spec.rb CHANGED
@@ -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
data/tasks/announce.rake CHANGED
@@ -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")
data/tasks/config.rb CHANGED
@@ -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
  #-----------------------------------------------------------------------
data/tasks/extension.rake CHANGED
@@ -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
data/tasks/rspec.rake CHANGED
@@ -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,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amalgalite
3
3
  version: !ruby/object:Gem::Version
4
- hash: 35
5
- prerelease: false
4
+ hash: 23
5
+ prerelease:
6
6
  segments:
7
+ - 1
7
8
  - 0
8
- - 15
9
9
  - 0
10
- version: 0.15.0
10
+ version: 1.0.0
11
11
  platform: x86-mswin32
12
12
  authors:
13
13
  - Jeremy Hinegardner
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-30 00:00:00 -06:00
18
+ date: 2011-01-16 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,12 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- hash: 35
29
+ hash: 43
30
30
  segments:
31
31
  - 4
32
32
  - 7
33
- - 0
34
- version: 4.7.0
33
+ - 4
34
+ version: 4.7.4
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
37
  - !ruby/object:Gem::Dependency
@@ -42,12 +42,12 @@ dependencies:
42
42
  requirements:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
- hash: 5
45
+ hash: 11
46
46
  segments:
47
47
  - 1
48
48
  - 5
49
- - 3
50
- version: 1.5.3
49
+ - 4
50
+ version: 1.5.4
51
51
  type: :runtime
52
52
  version_requirements: *id002
53
53
  - !ruby/object:Gem::Dependency
@@ -58,12 +58,12 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- hash: 55
61
+ hash: 49
62
62
  segments:
63
63
  - 0
64
64
  - 8
65
- - 4
66
- version: 0.8.4
65
+ - 7
66
+ version: 0.8.7
67
67
  type: :development
68
68
  version_requirements: *id003
69
69
  - !ruby/object:Gem::Dependency
@@ -74,12 +74,12 @@ dependencies:
74
74
  requirements:
75
75
  - - ~>
76
76
  - !ruby/object:Gem::Version
77
- hash: 21
77
+ hash: 31
78
78
  segments:
79
+ - 1
80
+ - 2
79
81
  - 0
80
- - 0
81
- - 5
82
- version: 0.0.5
82
+ version: 1.2.0
83
83
  type: :development
84
84
  version_requirements: *id004
85
85
  - !ruby/object:Gem::Dependency
@@ -90,12 +90,12 @@ dependencies:
90
90
  requirements:
91
91
  - - ~>
92
92
  - !ruby/object:Gem::Version
93
- hash: 27
93
+ hash: 31
94
94
  segments:
95
- - 1
96
- - 2
97
95
  - 2
98
- version: 1.2.2
96
+ - 4
97
+ - 0
98
+ version: 2.4.0
99
99
  type: :development
100
100
  version_requirements: *id005
101
101
  - !ruby/object:Gem::Dependency
@@ -106,28 +106,28 @@ dependencies:
106
106
  requirements:
107
107
  - - ~>
108
108
  - !ruby/object:Gem::Version
109
- hash: 11
109
+ hash: 9
110
110
  segments:
111
111
  - 0
112
+ - 7
112
113
  - 5
113
- - 0
114
- version: 0.5.0
114
+ version: 0.7.5
115
115
  type: :development
116
116
  version_requirements: *id006
117
117
  - !ruby/object:Gem::Dependency
118
- name: archive-tar-minitar
118
+ name: zip
119
119
  prerelease: false
120
120
  requirement: &id007 !ruby/object:Gem::Requirement
121
121
  none: false
122
122
  requirements:
123
123
  - - ~>
124
124
  - !ruby/object:Gem::Version
125
- hash: 15
125
+ hash: 11
126
126
  segments:
127
+ - 2
127
128
  - 0
128
- - 5
129
129
  - 2
130
- version: 0.5.2
130
+ version: 2.0.2
131
131
  type: :development
132
132
  version_requirements: *id007
133
133
  - !ruby/object:Gem::Dependency
@@ -138,14 +138,12 @@ dependencies:
138
138
  requirements:
139
139
  - - ~>
140
140
  - !ruby/object:Gem::Version
141
- hash: 63
141
+ hash: 41
142
142
  segments:
143
143
  - 0
144
- - 8
145
- - 1
146
- - 2
147
- - 0
148
- version: 0.8.1.2.0
144
+ - 9
145
+ - 9
146
+ version: 0.9.9
149
147
  type: :development
150
148
  version_requirements: *id008
151
149
  description: |-
@@ -173,8 +171,8 @@ executables:
173
171
  extensions: []
174
172
 
175
173
  extra_rdoc_files:
176
- - README
177
- - HISTORY
174
+ - README.rdoc
175
+ - HISTORY.rdoc
178
176
  - LICENSE
179
177
  - lib/amalgalite/aggregate.rb
180
178
  - lib/amalgalite/blob.rb
@@ -232,6 +230,7 @@ files:
232
230
  - examples/bootstrap.rb
233
231
  - examples/define_aggregate.rb
234
232
  - examples/define_function.rb
233
+ - examples/filestore.db
235
234
  - examples/gem-db.rb
236
235
  - examples/gems.db
237
236
  - examples/require_me.rb
@@ -305,15 +304,14 @@ files:
305
304
  - spec/data/iso-3166-country.txt
306
305
  - spec/data/iso-3166-subcountry.txt
307
306
  - spec/data/make-iso-db.sh
308
- - README
309
- - HISTORY
307
+ - README.rdoc
308
+ - HISTORY.rdoc
310
309
  - LICENSE
311
310
  - tasks/announce.rake
312
311
  - tasks/distribution.rake
313
312
  - tasks/documentation.rake
314
313
  - tasks/extension.rake
315
314
  - tasks/rspec.rake
316
- - tasks/rubyforge.rake
317
315
  - tasks/config.rb
318
316
  - tasks/utils.rb
319
317
  - gemspec.rb
@@ -326,7 +324,7 @@ licenses: []
326
324
  post_install_message:
327
325
  rdoc_options:
328
326
  - --main
329
- - README
327
+ - README.rdoc
330
328
  require_paths:
331
329
  - lib
332
330
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -350,7 +348,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
350
348
  requirements: []
351
349
 
352
350
  rubyforge_project: copiousfreetime
353
- rubygems_version: 1.3.7
351
+ rubygems_version: 1.4.1
354
352
  signing_key:
355
353
  specification_version: 3
356
354
  summary: Amalgalite embeds the SQLite database engine in a ruby extension