amalgalite 0.1.0

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 (64) hide show
  1. data/HISTORY +4 -0
  2. data/LICENSE +31 -0
  3. data/README +28 -0
  4. data/ext/amalgalite3.c +191 -0
  5. data/ext/amalgalite3.h +97 -0
  6. data/ext/amalgalite3_constants.c +179 -0
  7. data/ext/amalgalite3_database.c +458 -0
  8. data/ext/amalgalite3_statement.c +546 -0
  9. data/ext/gen_constants.rb +114 -0
  10. data/ext/mkrf_conf.rb +6 -0
  11. data/ext/sqlite3.c +87003 -0
  12. data/ext/sqlite3.h +5638 -0
  13. data/ext/sqlite3_options.h +4 -0
  14. data/ext/sqlite3ext.h +362 -0
  15. data/gemspec.rb +50 -0
  16. data/lib/amalgalite.rb +28 -0
  17. data/lib/amalgalite/blob.rb +14 -0
  18. data/lib/amalgalite/boolean.rb +42 -0
  19. data/lib/amalgalite/column.rb +83 -0
  20. data/lib/amalgalite/database.rb +505 -0
  21. data/lib/amalgalite/index.rb +27 -0
  22. data/lib/amalgalite/paths.rb +70 -0
  23. data/lib/amalgalite/profile_tap.rb +130 -0
  24. data/lib/amalgalite/schema.rb +90 -0
  25. data/lib/amalgalite/sqlite3.rb +4 -0
  26. data/lib/amalgalite/sqlite3/constants.rb +48 -0
  27. data/lib/amalgalite/sqlite3/version.rb +38 -0
  28. data/lib/amalgalite/statement.rb +307 -0
  29. data/lib/amalgalite/table.rb +34 -0
  30. data/lib/amalgalite/taps/console.rb +27 -0
  31. data/lib/amalgalite/taps/io.rb +71 -0
  32. data/lib/amalgalite/trace_tap.rb +35 -0
  33. data/lib/amalgalite/type_map.rb +60 -0
  34. data/lib/amalgalite/type_maps/default_map.rb +153 -0
  35. data/lib/amalgalite/type_maps/storage_map.rb +41 -0
  36. data/lib/amalgalite/type_maps/text_map.rb +23 -0
  37. data/lib/amalgalite/version.rb +32 -0
  38. data/lib/amalgalite/view.rb +24 -0
  39. data/spec/amalgalite_spec.rb +4 -0
  40. data/spec/boolean_spec.rb +26 -0
  41. data/spec/database_spec.rb +222 -0
  42. data/spec/default_map_spec.rb +85 -0
  43. data/spec/integeration_spec.rb +111 -0
  44. data/spec/paths_spec.rb +28 -0
  45. data/spec/schema_spec.rb +46 -0
  46. data/spec/spec_helper.rb +25 -0
  47. data/spec/sqlite3/constants_spec.rb +25 -0
  48. data/spec/sqlite3/version_spec.rb +14 -0
  49. data/spec/sqlite3_spec.rb +34 -0
  50. data/spec/statement_spec.rb +116 -0
  51. data/spec/storage_map_spec.rb +41 -0
  52. data/spec/tap_spec.rb +59 -0
  53. data/spec/text_map_spec.rb +23 -0
  54. data/spec/type_map_spec.rb +17 -0
  55. data/spec/version_spec.rb +9 -0
  56. data/tasks/announce.rake +38 -0
  57. data/tasks/config.rb +108 -0
  58. data/tasks/distribution.rake +38 -0
  59. data/tasks/documentation.rake +31 -0
  60. data/tasks/extension.rake +45 -0
  61. data/tasks/rspec.rake +32 -0
  62. data/tasks/rubyforge.rake +48 -0
  63. data/tasks/utils.rb +80 -0
  64. metadata +165 -0
@@ -0,0 +1,38 @@
1
+ require 'tasks/config'
2
+ #-------------------------------------------------------------------------------
3
+ # announcement methods
4
+ #-------------------------------------------------------------------------------
5
+
6
+ proj_config = Configuration.for('project')
7
+ namespace :announce do
8
+ desc "create email for ruby-talk"
9
+ task :email do
10
+ info = Utils.announcement
11
+
12
+ File.open("email.txt", "w") do |mail|
13
+ mail.puts "From: #{proj_config.author} <#{proj_config.email}>"
14
+ mail.puts "To: ruby-talk@ruby-lang.org"
15
+ mail.puts "Date: #{Time.now.rfc2822}"
16
+ mail.puts "Subject: [ANN] #{info[:subject]}"
17
+ mail.puts
18
+ mail.puts info[:title]
19
+ mail.puts
20
+ mail.puts info[:urls]
21
+ mail.puts
22
+ mail.puts info[:description]
23
+ mail.puts
24
+ mail.puts "{{ Release notes for Version #{Amalgalite::VERSION} }}"
25
+ mail.puts
26
+ mail.puts info[:release_notes]
27
+ mail.puts
28
+ mail.puts info[:urls]
29
+ end
30
+ puts "Created the following as email.txt:"
31
+ puts "-" * 72
32
+ puts File.read("email.txt")
33
+ puts "-" * 72
34
+ end
35
+
36
+ CLOBBER << "email.txt"
37
+ end
38
+
@@ -0,0 +1,108 @@
1
+ require 'configuration'
2
+
3
+ require 'rake'
4
+ require 'tasks/utils'
5
+
6
+ #-----------------------------------------------------------------------
7
+ # General project configuration
8
+ #-----------------------------------------------------------------------
9
+ Configuration.for('project') {
10
+ name "amalgalite"
11
+ version Amalgalite::Version.to_s
12
+ author "Jeremy Hinegardner"
13
+ email "jeremy at copiousfreetime dot org"
14
+ homepage "http://www.copiousfreetime.org/projects/amalgalite/"
15
+ description Utils.section_of("README", "description")
16
+ summary description.split(".").first
17
+ history "HISTORY"
18
+ license FileList["LICENSE"]
19
+ readme "README"
20
+ }
21
+
22
+ #-----------------------------------------------------------------------
23
+ # Packaging
24
+ #-----------------------------------------------------------------------
25
+ Configuration.for('packaging') {
26
+ # files in the project
27
+ proj_conf = Configuration.for('project')
28
+ files {
29
+ bin FileList["bin/*"]
30
+ ext FileList["ext/*.{c,h,rb}"]
31
+ lib FileList["lib/**/*.rb"]
32
+ test FileList["spec/**/*.rb", "test/**/*.rb"]
33
+ data FileList["data/**/*"]
34
+ tasks FileList["tasks/**/*.r{ake,b}"]
35
+ rdoc FileList[proj_conf.readme, proj_conf.history,
36
+ proj_conf.license] + lib + FileList["ext/amalgalite3*.c"]
37
+ all bin + ext + lib + test + data + rdoc + tasks
38
+ }
39
+
40
+ puts "ext files = #{files.ext}"
41
+
42
+ # ways to package the results
43
+ formats {
44
+ tgz true
45
+ zip true
46
+ gem Configuration::Table.has_key?('gem')
47
+ }
48
+ }
49
+
50
+ #-----------------------------------------------------------------------
51
+ # Gem packaging
52
+ #-----------------------------------------------------------------------
53
+ Configuration.for("gem") {
54
+ spec "gemspec.rb"
55
+ Configuration.for('packaging').files.all << spec
56
+ }
57
+
58
+ #-----------------------------------------------------------------------
59
+ # Testing
60
+ # - change mode to 'testunit' to use unit testing
61
+ #-----------------------------------------------------------------------
62
+ Configuration.for('test') {
63
+ mode "spec"
64
+ files Configuration.for("packaging").files.test
65
+ options %w[ --format specdoc --color ]
66
+ ruby_opts %w[ ]
67
+ }
68
+
69
+ #-----------------------------------------------------------------------
70
+ # Rcov
71
+ #-----------------------------------------------------------------------
72
+ Configuration.for('rcov') {
73
+ output_dir "coverage"
74
+ libs %w[ lib ]
75
+ rcov_opts %w[ --html ]
76
+ ruby_opts %w[ ]
77
+ test_files Configuration.for('packaging').files.test
78
+ }
79
+
80
+ #-----------------------------------------------------------------------
81
+ # Rdoc
82
+ #-----------------------------------------------------------------------
83
+ Configuration.for('rdoc') {
84
+ files Configuration.for('packaging').files.rdoc
85
+ main_page files.first
86
+ title Configuration.for('project').name
87
+ options %w[ --line-numbers --inline-source ]
88
+ output_dir "doc"
89
+ }
90
+
91
+ #-----------------------------------------------------------------------
92
+ # Extensions
93
+ #-----------------------------------------------------------------------
94
+ Configuration.for('extension') {
95
+ configs Configuration.for('packaging').files.ext.find_all { |x| %w[ mkrf_conf.rb extconf.rb ].include?(File.basename(x)) }
96
+ }
97
+
98
+ #-----------------------------------------------------------------------
99
+ # Rubyforge
100
+ #-----------------------------------------------------------------------
101
+ Configuration.for('rubyforge') {
102
+ project "copiousfreetime"
103
+ user "jjh"
104
+ host "rubyforge.org"
105
+ rdoc_location "#{user}@#{host}:/var/www/gforge-projects/#{project}/amalgalite/"
106
+ }
107
+
108
+
@@ -0,0 +1,38 @@
1
+ require 'tasks/config'
2
+
3
+ #-------------------------------------------------------------------------------
4
+ # Distribution and Packaging
5
+ #-------------------------------------------------------------------------------
6
+ if pkg_config = Configuration.for_if_exist?("packaging") then
7
+
8
+ require 'gemspec'
9
+ require 'rake/gempackagetask'
10
+ require 'rake/contrib/sshpublisher'
11
+
12
+ namespace :dist do
13
+
14
+ Rake::GemPackageTask.new(Amalgalite::GEM_SPEC) do |pkg|
15
+ pkg.need_tar = pkg_config.formats.tgz
16
+ pkg.need_zip = pkg_config.formats.zip
17
+ end
18
+
19
+ desc "Install as a gem"
20
+ task :install => [:clobber, :package] do
21
+ sh "sudo gem install -y pkg/#{Amalgalite::GEM_SPEC.full_name}.gem"
22
+ end
23
+
24
+ desc "Uninstall gem"
25
+ task :uninstall do
26
+ sh "sudo gem uninstall -i #{Amalgalite::GEM_SPEC.name} -x"
27
+ end
28
+
29
+ desc "dump gemspec"
30
+ task :gemspec do
31
+ puts Amalgalite::GEM_SPEC.to_ruby
32
+ end
33
+
34
+ desc "reinstall gem"
35
+ task :reinstall => [:uninstall, :repackage, :install]
36
+
37
+ end
38
+ end
@@ -0,0 +1,31 @@
1
+ require 'tasks/config'
2
+
3
+ #-----------------------------------------------------------------------
4
+ # Documentation
5
+ #-----------------------------------------------------------------------
6
+
7
+ if rdoc_config = Configuration.for_if_exist?('rdoc') then
8
+
9
+ namespace :doc do
10
+
11
+ require 'rake/rdoctask'
12
+
13
+ # generating documentation locally
14
+ Rake::RDocTask.new do |rdoc|
15
+ rdoc.rdoc_dir = rdoc_config.output_dir
16
+ rdoc.options = rdoc_config.options
17
+ rdoc.rdoc_files = rdoc_config.files
18
+ rdoc.title = rdoc_config.title
19
+ rdoc.main = rdoc_config.main_page
20
+ end
21
+
22
+ if rubyforge_config = Configuration.for_if_exist?('rubyforge') then
23
+ desc "Deploy the RDoc documentation to #{rubyforge_config.rdoc_location}"
24
+ task :deploy => :rerdoc do
25
+ sh "rsync -zav --delete #{rdoc_config.output_dir}/ #{rubyforge_config.rdoc_location}"
26
+ end
27
+ end
28
+
29
+ end
30
+ end
31
+
@@ -0,0 +1,45 @@
1
+ require 'tasks/config'
2
+ require 'pathname'
3
+
4
+ #-----------------------------------------------------------------------
5
+ # Extensions
6
+ #-----------------------------------------------------------------------
7
+
8
+ if ext_config = Configuration.for_if_exist?('extension') then
9
+ namespace :ext do
10
+ desc "Build the extension(s)"
11
+ task :build do
12
+ ext_config.configs.each do |extension|
13
+ path = Pathname.new(extension)
14
+ parts = path.split
15
+ conf = parts.last
16
+ Dir.chdir(path.dirname) do |d|
17
+ ruby conf.to_s
18
+ sh "rake default"
19
+ end
20
+ end
21
+ end
22
+
23
+ task :clean do
24
+ ext_config.configs.each do |extension|
25
+ path = Pathname.new(extension)
26
+ parts = path.split
27
+ conf = parts.last
28
+ Dir.chdir(path.dirname) do |d|
29
+ sh "rake clean"
30
+ end
31
+ end
32
+ end
33
+
34
+ task :clobber do
35
+ ext_config.configs.each do |extension|
36
+ path = Pathname.new(extension)
37
+ parts = path.split
38
+ conf = parts.last
39
+ Dir.chdir(path.dirname) do |d|
40
+ sh "rake clobber"
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,32 @@
1
+
2
+ require 'tasks/config'
3
+
4
+ #--------------------------------------------------------------------------------
5
+ # configuration for running rspec. This shows up as the test:default task
6
+ #--------------------------------------------------------------------------------
7
+ if spec_config = Configuration.for_if_exist?("test") then
8
+ if spec_config.mode == "spec" then
9
+ namespace :test do
10
+
11
+ task :default => :spec
12
+
13
+ require 'spec/rake/spectask'
14
+ Spec::Rake::SpecTask.new do |r|
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
+
22
+ if rcov_config = Configuration.for_if_exist?('rcov') then
23
+ r.rcov = true
24
+ r.rcov_dir = rcov_config.output_dir
25
+ r.rcov_opts = rcov_config.rcov_opts
26
+ end
27
+ end
28
+
29
+ task :spec => 'ext:build'
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,48 @@
1
+ require 'tasks/config'
2
+
3
+ #-----------------------------------------------------------------------
4
+ # Rubyforge additions to the task library
5
+ #-----------------------------------------------------------------------
6
+ if rf_conf = Configuration.for_if_exist?("rubyforge") then
7
+
8
+ abort("rubyforge gem not installed 'gem install rubyforge'") unless Utils.try_require('rubyforge')
9
+
10
+ proj_conf = Configuration.for('project')
11
+
12
+ namespace :dist do
13
+ desc "Release files to rubyforge"
14
+ task :rubyforge => [:clean, :package] do
15
+
16
+ rubyforge = RubyForge.new
17
+
18
+ # make sure this release doesn't already exist
19
+ releases = rubyforge.autoconfig['release_ids']
20
+ if releases.has_key?(Amalgalite::GEM_SPEC.name) and releases[Amalgalite::GEM_SPEC.name][Amalgalite::VERSION] then
21
+ abort("Release #{Amalgalite::VERSION} already exists! Unable to release.")
22
+ end
23
+
24
+ config = rubyforge.userconfig
25
+ config["release_notes"] = proj_conf.description
26
+ config["release_changes"] = Utils.release_notes_from(proj_conf.history)[Amalgalite::VERSION]
27
+ config["Prefomatted"] = true
28
+
29
+ puts "Uploading to rubyforge..."
30
+ files = FileList[File.join("pkg","#{Amalgalite::GEM_SPEC.name}-#{Amalgalite::VERSION}*.*")].to_a
31
+ rubyforge.login
32
+ rubyforge.add_release(Amalgalite::GEM_SPEC.rubyforge_project, Amalgalite::GEM_SPEC.name, Amalgalite::VERSION, *files)
33
+ puts "done."
34
+ end
35
+ end
36
+
37
+ namespace :announce do
38
+ desc "Post news of #{proj_conf.name} to #{rf_conf.project} on rubyforge"
39
+ task :rubyforge do
40
+ info = Utils.announcement
41
+ rubyforge = RubyForge.new
42
+ rubyforge.login
43
+ rubyforge.post_news(rf_conf.project, info[:subject], "#{info[:title]}\n\n#{info[:urls]}\n\n#{info[:release_notes]}")
44
+ puts "Posted to rubyforge"
45
+ end
46
+
47
+ end
48
+ end
@@ -0,0 +1,80 @@
1
+ require 'amalgalite/version'
2
+
3
+ #-------------------------------------------------------------------------------
4
+ # Additions to the Configuration class that are useful
5
+ #-------------------------------------------------------------------------------
6
+ class Configuration
7
+ class << self
8
+ def exist?( name )
9
+ Configuration::Table.has_key?( name )
10
+ end
11
+
12
+ def for_if_exist?( name )
13
+ if self.exist?( name ) then
14
+ self.for( name )
15
+ end
16
+ end
17
+ end
18
+ end
19
+
20
+ #-------------------------------------------------------------------------------
21
+ # some useful utilitiy methods for the tasks
22
+ #-------------------------------------------------------------------------------
23
+ module Utils
24
+ class << self
25
+
26
+ # Try to load the given _library_ using the built-in require, but do not
27
+ # raise a LoadError if unsuccessful. Returns +true+ if the _library_ was
28
+ # successfully loaded; returns +false+ otherwise.
29
+ #
30
+ def try_require( lib )
31
+ require lib
32
+ true
33
+ rescue LoadError
34
+ false
35
+ end
36
+
37
+ # partition an rdoc file into sections, and return the text of the section
38
+ # given.
39
+ def section_of(file, section_name)
40
+ File.read(file).split(/^(?==)/).each do |section|
41
+ lines = section.split("\n")
42
+ return lines[1..-1].join("\n").strip if lines.first =~ /#{section_name}/i
43
+ end
44
+ nil
45
+ end
46
+
47
+ # Get an array of all the changes in the application for a particular
48
+ # release. This is done by looking in the history file and grabbing the
49
+ # information for the most recent release. The history file is assumed to
50
+ # be in RDoc format and version release are 2nd tier sections separated by
51
+ # '== Version X.Y.Z'
52
+ #
53
+ # returns:: A hash of notes keyed by version number
54
+ #
55
+ def release_notes_from(history_file)
56
+ releases = {}
57
+ File.read(history_file).split(/^(?==)/).each do |section|
58
+ lines = section.split("\n")
59
+ md = %r{Version ((\w+\.)+\w+)}.match(lines.first)
60
+ next unless md
61
+ releases[md[1]] = lines[1..-1].join("\n").strip
62
+ end
63
+ return releases
64
+ end
65
+
66
+ # return a hash of useful information for the latest release
67
+ # urls, subject, title, description and latest release notes
68
+ #
69
+ def announcement
70
+ cfg = Configuration.for("project")
71
+ {
72
+ :subject => "#{cfg.name} #{Amalgalite::VERSION} Released",
73
+ :title => "#{cfg.name} version #{Amalgalite::VERSION} has been released.",
74
+ :urls => "#{cfg.homepage}",
75
+ :description => "#{cfg.description.rstrip}",
76
+ :release_notes => Utils.release_notes_from(cfg.history)[Amalgalite::VERSION].rstrip
77
+ }
78
+ end
79
+ end
80
+ end # << self
metadata ADDED
@@ -0,0 +1,165 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: amalgalite
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jeremy Hinegardner
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-06-20 00:00:00 -06:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: configuration
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.0.5
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: arrayfields
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 4.5.0
32
+ version:
33
+ description: Amalgalite embeds the SQLite database engine in a ruby extension. Scroll through Amalgalite::Database for a quick example, and a general overview of the API.
34
+ email: jeremy@hinegardner.org
35
+ executables: []
36
+
37
+ extensions:
38
+ - ext/mkrf_conf.rb
39
+ extra_rdoc_files:
40
+ - README
41
+ - HISTORY
42
+ - LICENSE
43
+ - lib/amalgalite/blob.rb
44
+ - lib/amalgalite/boolean.rb
45
+ - lib/amalgalite/column.rb
46
+ - lib/amalgalite/database.rb
47
+ - lib/amalgalite/index.rb
48
+ - lib/amalgalite/paths.rb
49
+ - lib/amalgalite/profile_tap.rb
50
+ - lib/amalgalite/schema.rb
51
+ - lib/amalgalite/sqlite3/constants.rb
52
+ - lib/amalgalite/sqlite3/version.rb
53
+ - lib/amalgalite/sqlite3.rb
54
+ - lib/amalgalite/statement.rb
55
+ - lib/amalgalite/table.rb
56
+ - lib/amalgalite/taps/console.rb
57
+ - lib/amalgalite/taps/io.rb
58
+ - lib/amalgalite/trace_tap.rb
59
+ - lib/amalgalite/type_map.rb
60
+ - lib/amalgalite/type_maps/default_map.rb
61
+ - lib/amalgalite/type_maps/storage_map.rb
62
+ - lib/amalgalite/type_maps/text_map.rb
63
+ - lib/amalgalite/version.rb
64
+ - lib/amalgalite/view.rb
65
+ - lib/amalgalite.rb
66
+ - ext/amalgalite3.c
67
+ - ext/amalgalite3_constants.c
68
+ - ext/amalgalite3_database.c
69
+ - ext/amalgalite3_statement.c
70
+ files:
71
+ - ext/amalgalite3.c
72
+ - ext/amalgalite3_constants.c
73
+ - ext/amalgalite3_database.c
74
+ - ext/amalgalite3_statement.c
75
+ - ext/sqlite3.c
76
+ - ext/amalgalite3.h
77
+ - ext/sqlite3.h
78
+ - ext/sqlite3_options.h
79
+ - ext/sqlite3ext.h
80
+ - ext/gen_constants.rb
81
+ - ext/mkrf_conf.rb
82
+ - lib/amalgalite/blob.rb
83
+ - lib/amalgalite/boolean.rb
84
+ - lib/amalgalite/column.rb
85
+ - lib/amalgalite/database.rb
86
+ - lib/amalgalite/index.rb
87
+ - lib/amalgalite/paths.rb
88
+ - lib/amalgalite/profile_tap.rb
89
+ - lib/amalgalite/schema.rb
90
+ - lib/amalgalite/sqlite3/constants.rb
91
+ - lib/amalgalite/sqlite3/version.rb
92
+ - lib/amalgalite/sqlite3.rb
93
+ - lib/amalgalite/statement.rb
94
+ - lib/amalgalite/table.rb
95
+ - lib/amalgalite/taps/console.rb
96
+ - lib/amalgalite/taps/io.rb
97
+ - lib/amalgalite/trace_tap.rb
98
+ - lib/amalgalite/type_map.rb
99
+ - lib/amalgalite/type_maps/default_map.rb
100
+ - lib/amalgalite/type_maps/storage_map.rb
101
+ - lib/amalgalite/type_maps/text_map.rb
102
+ - lib/amalgalite/version.rb
103
+ - lib/amalgalite/view.rb
104
+ - lib/amalgalite.rb
105
+ - spec/amalgalite_spec.rb
106
+ - spec/boolean_spec.rb
107
+ - spec/database_spec.rb
108
+ - spec/default_map_spec.rb
109
+ - spec/integeration_spec.rb
110
+ - spec/paths_spec.rb
111
+ - spec/schema_spec.rb
112
+ - spec/spec_helper.rb
113
+ - spec/sqlite3/constants_spec.rb
114
+ - spec/sqlite3/version_spec.rb
115
+ - spec/sqlite3_spec.rb
116
+ - spec/statement_spec.rb
117
+ - spec/storage_map_spec.rb
118
+ - spec/tap_spec.rb
119
+ - spec/text_map_spec.rb
120
+ - spec/type_map_spec.rb
121
+ - spec/version_spec.rb
122
+ - README
123
+ - HISTORY
124
+ - LICENSE
125
+ - tasks/announce.rake
126
+ - tasks/distribution.rake
127
+ - tasks/documentation.rake
128
+ - tasks/extension.rake
129
+ - tasks/rspec.rake
130
+ - tasks/rubyforge.rake
131
+ - tasks/config.rb
132
+ - tasks/utils.rb
133
+ - gemspec.rb
134
+ has_rdoc: true
135
+ homepage: http://copiousfreetime.rubyforge.org/amalgalite/
136
+ post_install_message:
137
+ rdoc_options:
138
+ - --line-numbers
139
+ - --inline-source
140
+ - --main
141
+ - README
142
+ require_paths:
143
+ - lib
144
+ - ext
145
+ required_ruby_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: "0"
150
+ version:
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: "0"
156
+ version:
157
+ requirements: []
158
+
159
+ rubyforge_project: copiousfreetime
160
+ rubygems_version: 1.1.1
161
+ signing_key:
162
+ specification_version: 2
163
+ summary: Amalgalite embeds the SQLite database engine in a ruby extension
164
+ test_files: []
165
+