amalgalite 1.1.1-x86-mswin32 → 1.1.2-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.
- data/HISTORY.rdoc +5 -0
- data/README.rdoc +3 -1
- data/lib/amalgalite/1.8/amalgalite3.so +0 -0
- data/lib/amalgalite/1.9/amalgalite3.so +0 -0
- data/lib/amalgalite/version.rb +1 -1
- data/tasks/documentation.rake +6 -2
- metadata +7 -8
- data/examples/filestore.db +0 -0
- data/examples/fts3.db +0 -0
- data/examples/gems.db +0 -0
data/HISTORY.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -27,13 +27,15 @@ Look in the examples/ directory to see
|
|
27
27
|
* custom functions
|
28
28
|
* custom aggregates
|
29
29
|
* requiring ruby code from a database
|
30
|
+
* full text search
|
30
31
|
|
31
32
|
Also Scroll through Amalgalite::Database for a quick example, and a general
|
32
33
|
overview of the API.
|
33
34
|
|
34
|
-
Amalgalite adds in the following additional non-default SQLite
|
35
|
+
Amalgalite adds in the following additional non-default SQLite extensions:
|
35
36
|
|
36
37
|
* {R*Tree index extension}[http://sqlite.org/rtree.html]
|
38
|
+
* {Full Text Search}[http://sqlite.org/fts3.html]
|
37
39
|
|
38
40
|
== CREDITS
|
39
41
|
|
Binary file
|
Binary file
|
data/lib/amalgalite/version.rb
CHANGED
data/tasks/documentation.rake
CHANGED
@@ -21,9 +21,13 @@ if rdoc_config = Configuration.for_if_exist?('rdoc') then
|
|
21
21
|
end
|
22
22
|
|
23
23
|
if rubyforge_config = Configuration.for_if_exist?('rubyforge') then
|
24
|
-
desc "Deploy the RDoc documentation to
|
24
|
+
desc "Deploy the RDoc documentation to ENV['RDOC_DEPLOY']"
|
25
25
|
task :deploy => :rerdoc do
|
26
|
-
|
26
|
+
if ENV['RDOC_DEPLOY'] then
|
27
|
+
sh "rsync -zav --delete #{rdoc_config.output_dir}/ #{ENV['RDOC_DEPLOY']}"
|
28
|
+
else
|
29
|
+
puts "To Deploy RDOC set the RDOC_DEPLOY environment variable"
|
30
|
+
end
|
27
31
|
end
|
28
32
|
end
|
29
33
|
|
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:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 2
|
10
|
+
version: 1.1.2
|
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: 2011-
|
18
|
+
date: 2011-04-01 00:00:00 -06:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -158,13 +158,15 @@ description: |-
|
|
158
158
|
* custom functions
|
159
159
|
* custom aggregates
|
160
160
|
* requiring ruby code from a database
|
161
|
+
* full text search
|
161
162
|
|
162
163
|
Also Scroll through Amalgalite::Database for a quick example, and a general
|
163
164
|
overview of the API.
|
164
165
|
|
165
|
-
Amalgalite adds in the following additional non-default SQLite
|
166
|
+
Amalgalite adds in the following additional non-default SQLite extensions:
|
166
167
|
|
167
168
|
* {R*Tree index extension}[http://sqlite.org/rtree.html]
|
169
|
+
* {Full Text Search}[http://sqlite.org/fts3.html]
|
168
170
|
email: jeremy@hinegardner.org
|
169
171
|
executables:
|
170
172
|
- amalgalite-pack
|
@@ -230,11 +232,8 @@ files:
|
|
230
232
|
- examples/bootstrap.rb
|
231
233
|
- examples/define_aggregate.rb
|
232
234
|
- examples/define_function.rb
|
233
|
-
- examples/filestore.db
|
234
|
-
- examples/fts3.db
|
235
235
|
- examples/fts3.rb
|
236
236
|
- examples/gem-db.rb
|
237
|
-
- examples/gems.db
|
238
237
|
- examples/require_me.rb
|
239
238
|
- examples/requires.rb
|
240
239
|
- examples/schema-info.rb
|
data/examples/filestore.db
DELETED
Binary file
|
data/examples/fts3.db
DELETED
Binary file
|
data/examples/gems.db
DELETED
Binary file
|