sqlite3 0.1.0 → 0.1.1
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/lib/sqlite3/version.rb +1 -1
- metadata +16 -15
data/lib/sqlite3/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- "Jakub Ku\xC5\xBAma"
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-05-
|
17
|
+
date: 2010-05-08 00:00:00 +02:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -58,7 +58,7 @@ dependencies:
|
|
58
58
|
version: 2.3.5
|
59
59
|
type: :development
|
60
60
|
version_requirements: *id003
|
61
|
-
description: SQLite3 FFI bindings for Ruby 1.9
|
61
|
+
description: Experimental SQLite3 FFI bindings for Ruby 1.9 with encoding support
|
62
62
|
email: qoobaa@gmail.com
|
63
63
|
executables: []
|
64
64
|
|
@@ -67,17 +67,17 @@ extensions: []
|
|
67
67
|
extra_rdoc_files: []
|
68
68
|
|
69
69
|
files:
|
70
|
-
- lib/sqlite3/
|
71
|
-
- lib/sqlite3/resultset.rb
|
70
|
+
- lib/sqlite3/statement.rb
|
72
71
|
- lib/sqlite3/pragmas.rb
|
72
|
+
- lib/sqlite3/api.rb
|
73
73
|
- lib/sqlite3/database.rb
|
74
|
-
- lib/sqlite3/
|
74
|
+
- lib/sqlite3/resultset.rb
|
75
75
|
- lib/sqlite3/extensions.rb
|
76
|
-
- lib/sqlite3/
|
77
|
-
- lib/sqlite3/api.rb
|
76
|
+
- lib/sqlite3/driver.rb
|
78
77
|
- lib/sqlite3/constants.rb
|
78
|
+
- lib/sqlite3/version.rb
|
79
79
|
- lib/sqlite3/encoding.rb
|
80
|
-
- lib/sqlite3/
|
80
|
+
- lib/sqlite3/errors.rb
|
81
81
|
- lib/sqlite3.rb
|
82
82
|
- LICENSE
|
83
83
|
- README.rdoc
|
@@ -88,10 +88,9 @@ licenses: []
|
|
88
88
|
post_install_message: |
|
89
89
|
==== WARNING ===================================================================
|
90
90
|
This is an early alpha version of SQLite3/Ruby FFI bindings!
|
91
|
-
Currently we support Ruby 1.9 ONLY.
|
92
91
|
|
93
|
-
If you need native bindings for Ruby 1.8 - install sqlite3-ruby
|
94
|
-
You may need to uninstall this sqlite3 gem as well.
|
92
|
+
If you need native bindings for Ruby 1.8/1.9 - install sqlite3-ruby
|
93
|
+
instead. You may need to uninstall this sqlite3 gem as well.
|
95
94
|
|
96
95
|
Thank you for installing sqlite3 gem! Suggestions: qoobaa@gmail.com
|
97
96
|
================================================================================
|
@@ -105,8 +104,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
105
104
|
- - ">="
|
106
105
|
- !ruby/object:Gem::Version
|
107
106
|
segments:
|
108
|
-
-
|
109
|
-
|
107
|
+
- 1
|
108
|
+
- 9
|
109
|
+
- 1
|
110
|
+
version: 1.9.1
|
110
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
112
|
requirements:
|
112
113
|
- - ">="
|