amalgalite 0.2.3 → 0.2.4

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 CHANGED
@@ -1,4 +1,9 @@
1
1
  = Changelog
2
+ == Version 0.2.4
3
+
4
+ * Bugfixes
5
+ * fix compilation when ruby is compiled without pthreads using
6
+
2
7
  == Version 0.2.3
3
8
 
4
9
  * Bugfixes
data/ext/extconf.rb CHANGED
@@ -8,6 +8,6 @@ $CFLAGS += " -DSQLITE_ENABLE_COLUMN_METADATA=1"
8
8
  if Config::CONFIG['configure_args'].include?( "--enable-pthread" ) then
9
9
  $CFLAGS += " -DSQLITE_THREADSAFE=1"
10
10
  else
11
- $CFLAGS += "-DSQLITE_THREADSAFE=0"
11
+ $CFLAGS += " -DSQLITE_THREADSAFE=0"
12
12
  end
13
13
  create_makefile('amalgalite3')
@@ -9,7 +9,7 @@ module Amalgalite
9
9
 
10
10
  MAJOR = 0
11
11
  MINOR = 2
12
- BUILD = 3
12
+ BUILD = 4
13
13
 
14
14
  #
15
15
  # return the Version as an array of MAJOR, MINOR, BUILD
@@ -34,12 +34,5 @@ if pkg_config = Configuration.for_if_exist?("packaging") then
34
34
  desc "reinstall gem"
35
35
  task :reinstall => [:uninstall, :repackage, :install]
36
36
 
37
- desc "distribute copiously"
38
- task :copious => [:package] do
39
- Rake::SshFilePublisher.new('jeremy@copiousfreetime.org',
40
- '/var/www/vhosts/www.copiousfreetime.org/htdocs/gems/gems',
41
- 'pkg',"#{Amalgalite::GEM_SPEC.full_name}.gem").upload
42
- sh "ssh jeremy@copiousfreetime.org rake -f /var/www/vhosts/www.copiousfreetime.org/htdocs/gems/Rakefile"
43
- end
44
- end
37
+ end
45
38
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amalgalite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-07-12 00:00:00 -06:00
12
+ date: 2008-07-13 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,40 +40,40 @@ extra_rdoc_files:
40
40
  - README
41
41
  - HISTORY
42
42
  - LICENSE
43
+ - lib/amalgalite/sqlite3/constants.rb
44
+ - lib/amalgalite/sqlite3/version.rb
45
+ - lib/amalgalite/taps/console.rb
46
+ - lib/amalgalite/taps/io.rb
47
+ - lib/amalgalite/type_maps/default_map.rb
48
+ - lib/amalgalite/type_maps/storage_map.rb
49
+ - lib/amalgalite/type_maps/text_map.rb
50
+ - lib/amalgalite/statement.rb
43
51
  - lib/amalgalite/blob.rb
52
+ - lib/amalgalite/version.rb
44
53
  - lib/amalgalite/boolean.rb
45
54
  - lib/amalgalite/column.rb
46
- - lib/amalgalite/core_ext/kernel/require.rb
47
55
  - lib/amalgalite/database.rb
48
56
  - lib/amalgalite/index.rb
49
57
  - lib/amalgalite/paths.rb
50
58
  - lib/amalgalite/profile_tap.rb
51
- - lib/amalgalite/requires.rb
52
59
  - lib/amalgalite/schema.rb
53
- - lib/amalgalite/sqlite3/constants.rb
54
- - lib/amalgalite/sqlite3/version.rb
55
60
  - lib/amalgalite/sqlite3.rb
56
- - lib/amalgalite/statement.rb
61
+ - lib/amalgalite/core_ext/kernel/require.rb
62
+ - lib/amalgalite/requires.rb
57
63
  - lib/amalgalite/table.rb
58
- - lib/amalgalite/taps/console.rb
59
- - lib/amalgalite/taps/io.rb
60
64
  - lib/amalgalite/taps.rb
61
65
  - lib/amalgalite/trace_tap.rb
62
66
  - lib/amalgalite/type_map.rb
63
- - lib/amalgalite/type_maps/default_map.rb
64
- - lib/amalgalite/type_maps/storage_map.rb
65
- - lib/amalgalite/type_maps/text_map.rb
66
- - lib/amalgalite/version.rb
67
67
  - lib/amalgalite/view.rb
68
68
  - lib/amalgalite.rb
69
- - ext/amalgalite3.c
70
69
  - ext/amalgalite3_blob.c
70
+ - ext/amalgalite3.c
71
71
  - ext/amalgalite3_constants.c
72
72
  - ext/amalgalite3_database.c
73
73
  - ext/amalgalite3_statement.c
74
74
  files:
75
- - ext/amalgalite3.c
76
75
  - ext/amalgalite3_blob.c
76
+ - ext/amalgalite3.c
77
77
  - ext/amalgalite3_constants.c
78
78
  - ext/amalgalite3_database.c
79
79
  - ext/amalgalite3_statement.c
@@ -84,44 +84,44 @@ files:
84
84
  - ext/sqlite3ext.h
85
85
  - ext/extconf.rb
86
86
  - ext/gen_constants.rb
87
+ - lib/amalgalite/sqlite3/constants.rb
88
+ - lib/amalgalite/sqlite3/version.rb
89
+ - lib/amalgalite/taps/console.rb
90
+ - lib/amalgalite/taps/io.rb
91
+ - lib/amalgalite/type_maps/default_map.rb
92
+ - lib/amalgalite/type_maps/storage_map.rb
93
+ - lib/amalgalite/type_maps/text_map.rb
94
+ - lib/amalgalite/statement.rb
87
95
  - lib/amalgalite/blob.rb
96
+ - lib/amalgalite/version.rb
88
97
  - lib/amalgalite/boolean.rb
89
98
  - lib/amalgalite/column.rb
90
- - lib/amalgalite/core_ext/kernel/require.rb
91
99
  - lib/amalgalite/database.rb
92
100
  - lib/amalgalite/index.rb
93
101
  - lib/amalgalite/paths.rb
94
102
  - lib/amalgalite/profile_tap.rb
95
- - lib/amalgalite/requires.rb
96
103
  - lib/amalgalite/schema.rb
97
- - lib/amalgalite/sqlite3/constants.rb
98
- - lib/amalgalite/sqlite3/version.rb
99
104
  - lib/amalgalite/sqlite3.rb
100
- - lib/amalgalite/statement.rb
105
+ - lib/amalgalite/core_ext/kernel/require.rb
106
+ - lib/amalgalite/requires.rb
101
107
  - lib/amalgalite/table.rb
102
- - lib/amalgalite/taps/console.rb
103
- - lib/amalgalite/taps/io.rb
104
108
  - lib/amalgalite/taps.rb
105
109
  - lib/amalgalite/trace_tap.rb
106
110
  - lib/amalgalite/type_map.rb
107
- - lib/amalgalite/type_maps/default_map.rb
108
- - lib/amalgalite/type_maps/storage_map.rb
109
- - lib/amalgalite/type_maps/text_map.rb
110
- - lib/amalgalite/version.rb
111
111
  - lib/amalgalite/view.rb
112
112
  - lib/amalgalite.rb
113
+ - spec/sqlite3/constants_spec.rb
114
+ - spec/sqlite3/version_spec.rb
115
+ - spec/integeration_spec.rb
113
116
  - spec/amalgalite_spec.rb
114
117
  - spec/blob_spec.rb
118
+ - spec/sqlite3_spec.rb
115
119
  - spec/boolean_spec.rb
116
120
  - spec/database_spec.rb
117
121
  - spec/default_map_spec.rb
118
- - spec/integeration_spec.rb
119
122
  - spec/paths_spec.rb
120
123
  - spec/schema_spec.rb
121
124
  - spec/spec_helper.rb
122
- - spec/sqlite3/constants_spec.rb
123
- - spec/sqlite3/version_spec.rb
124
- - spec/sqlite3_spec.rb
125
125
  - spec/statement_spec.rb
126
126
  - spec/storage_map_spec.rb
127
127
  - spec/tap_spec.rb
@@ -131,10 +131,10 @@ files:
131
131
  - README
132
132
  - HISTORY
133
133
  - LICENSE
134
- - tasks/announce.rake
135
134
  - tasks/distribution.rake
136
- - tasks/documentation.rake
135
+ - tasks/announce.rake
137
136
  - tasks/extension.rake
137
+ - tasks/documentation.rake
138
138
  - tasks/rspec.rake
139
139
  - tasks/rubyforge.rake
140
140
  - tasks/config.rb
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  requirements: []
167
167
 
168
168
  rubyforge_project: copiousfreetime
169
- rubygems_version: 1.1.0
169
+ rubygems_version: 1.0.1
170
170
  signing_key:
171
171
  specification_version: 2
172
172
  summary: Amalgalite embeds the SQLite database engine in a ruby extension