amalgalite 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,9 @@
1
1
  = Amalgalite Changelog
2
+ == Version 1.1.2 - 2011-04-01
3
+
4
+ === Bug Fixes
5
+ * Remove example database that was mistakenly packaged with version 1.1.1
6
+
2
7
  == Version 1.1.1 - 2011-03-27
3
8
 
4
9
  === Enhancements
@@ -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 extension(s):
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
 
@@ -9,7 +9,7 @@ module Amalgalite
9
9
 
10
10
  MAJOR = 1
11
11
  MINOR = 1
12
- BUILD = 1
12
+ BUILD = 2
13
13
 
14
14
  #
15
15
  # return the Version as an array of MAJOR, MINOR, BUILD
@@ -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 #{rubyforge_config.rdoc_location}"
24
+ desc "Deploy the RDoc documentation to ENV['RDOC_DEPLOY']"
25
25
  task :deploy => :rerdoc do
26
- sh "rsync -zav --delete #{rdoc_config.output_dir}/ #{rubyforge_config.rdoc_location}"
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: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
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-03-27 00:00:00 -06:00
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 extension(s):
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
Binary file
Binary file
Binary file