amalgalite 0.2.2 → 0.2.3

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.3
3
+
4
+ * Bugfixes
5
+ * make sure file permissions are all read before shipping gem
6
+
2
7
  == Version 0.2.2
3
8
 
4
9
  * Bugfixes
@@ -9,7 +9,7 @@ module Amalgalite
9
9
 
10
10
  MAJOR = 0
11
11
  MINOR = 2
12
- BUILD = 2
12
+ BUILD = 3
13
13
 
14
14
  #
15
15
  # return the Version as an array of MAJOR, MINOR, BUILD
@@ -34,5 +34,12 @@ if pkg_config = Configuration.for_if_exist?("packaging") then
34
34
  desc "reinstall gem"
35
35
  task :reinstall => [:uninstall, :repackage, :install]
36
36
 
37
- end
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
38
45
  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.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
@@ -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
51
43
  - lib/amalgalite/blob.rb
52
- - lib/amalgalite/version.rb
53
44
  - lib/amalgalite/boolean.rb
54
45
  - lib/amalgalite/column.rb
46
+ - lib/amalgalite/core_ext/kernel/require.rb
55
47
  - lib/amalgalite/database.rb
56
48
  - lib/amalgalite/index.rb
57
49
  - lib/amalgalite/paths.rb
58
50
  - lib/amalgalite/profile_tap.rb
51
+ - lib/amalgalite/requires.rb
59
52
  - lib/amalgalite/schema.rb
53
+ - lib/amalgalite/sqlite3/constants.rb
54
+ - lib/amalgalite/sqlite3/version.rb
60
55
  - lib/amalgalite/sqlite3.rb
61
- - lib/amalgalite/core_ext/kernel/require.rb
62
- - lib/amalgalite/requires.rb
56
+ - lib/amalgalite/statement.rb
63
57
  - lib/amalgalite/table.rb
58
+ - lib/amalgalite/taps/console.rb
59
+ - lib/amalgalite/taps/io.rb
64
60
  - lib/amalgalite/taps.rb
65
61
  - lib/amalgalite/trace_tap.rb
66
62
  - 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_blob.c
70
69
  - ext/amalgalite3.c
70
+ - ext/amalgalite3_blob.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_blob.c
76
75
  - ext/amalgalite3.c
76
+ - ext/amalgalite3_blob.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
95
87
  - lib/amalgalite/blob.rb
96
- - lib/amalgalite/version.rb
97
88
  - lib/amalgalite/boolean.rb
98
89
  - lib/amalgalite/column.rb
90
+ - lib/amalgalite/core_ext/kernel/require.rb
99
91
  - lib/amalgalite/database.rb
100
92
  - lib/amalgalite/index.rb
101
93
  - lib/amalgalite/paths.rb
102
94
  - lib/amalgalite/profile_tap.rb
95
+ - lib/amalgalite/requires.rb
103
96
  - lib/amalgalite/schema.rb
97
+ - lib/amalgalite/sqlite3/constants.rb
98
+ - lib/amalgalite/sqlite3/version.rb
104
99
  - lib/amalgalite/sqlite3.rb
105
- - lib/amalgalite/core_ext/kernel/require.rb
106
- - lib/amalgalite/requires.rb
100
+ - lib/amalgalite/statement.rb
107
101
  - lib/amalgalite/table.rb
102
+ - lib/amalgalite/taps/console.rb
103
+ - lib/amalgalite/taps/io.rb
108
104
  - lib/amalgalite/taps.rb
109
105
  - lib/amalgalite/trace_tap.rb
110
106
  - 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
116
113
  - spec/amalgalite_spec.rb
117
114
  - spec/blob_spec.rb
118
- - spec/sqlite3_spec.rb
119
115
  - spec/boolean_spec.rb
120
116
  - spec/database_spec.rb
121
117
  - spec/default_map_spec.rb
118
+ - spec/integeration_spec.rb
122
119
  - spec/paths_spec.rb
123
120
  - spec/schema_spec.rb
124
121
  - 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/distribution.rake
135
134
  - tasks/announce.rake
136
- - tasks/extension.rake
135
+ - tasks/distribution.rake
137
136
  - tasks/documentation.rake
137
+ - tasks/extension.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.0.1
169
+ rubygems_version: 1.1.0
170
170
  signing_key:
171
171
  specification_version: 2
172
172
  summary: Amalgalite embeds the SQLite database engine in a ruby extension