rdo 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/rdo/version.rb +1 -1
  2. data/rdo.gemspec +9 -15
  3. metadata +13 -16
data/lib/rdo/version.rb CHANGED
@@ -6,5 +6,5 @@
6
6
  ##
7
7
 
8
8
  module RDO
9
- VERSION = "0.0.5"
9
+ VERSION = "0.0.6"
10
10
  end
data/rdo.gemspec CHANGED
@@ -17,21 +17,15 @@ Gem::Specification.new do |gem|
17
17
  Ruby syntax, while supporting all the functionality you'd expect from a robust
18
18
  database connection library:
19
19
 
20
- <ul>
21
- <li><strong>Consistent API</strong> to connect to various DBMS's</li>
22
- <li><strong>Type casting</strong> to Ruby types</li>
23
- <li><strong>Time zone handling</strong> (via the DBMS, not via some crazy
24
- time logic in Ruby)</li>
25
- <li><strong>Native bind values</strong> parameterization of queries, where
26
- supported by the DBMS</li>
27
- <li><strong>Buffered result sets</strong> (i.e. cursors, to avoid
28
- exhausting memory)</li>
29
- <li>Retrieve query info from executed commands (e.g. affected rows)</li>
30
- <li><strong>Access RETURNING values</strong> just like any read query</li>
31
- <li><strong>Native prepared statements</strong> where supported, emulated
32
- where not</li>
33
- <li>Results given using simple <strong>core Ruby data types</strong></li>
34
- </ul>
20
+ * Consistent API to connect to various DBMS's
21
+ * Type casting to Ruby types
22
+ * Time zone handling (via the DBMS, not via some crazy time logic in Ruby)
23
+ * Native bind values parameterization of queries, where supported by the DBMS
24
+ * Buffered result sets (i.e. cursors, to avoid exhausting memory)
25
+ * Retrieve query info from executed commands (e.g. affected rows)
26
+ * Access RETURNING values just like any read query
27
+ * Native prepared statements where supported, emulated where not
28
+ * Results given using simple core Ruby data types
35
29
 
36
30
  == RDBMS Support
37
31
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -33,21 +33,18 @@ description: ! "== Ruby Data Objects\n\nIf you're building something in Ruby tha
33
33
  an ORM—then you'll\nneed some other way of talking to your database.\n\nRDO provides
34
34
  a common interface to a number of RDBMS backends, using a clean\nRuby syntax, while
35
35
  supporting all the functionality you'd expect from a robust\ndatabase connection
36
- library:\n\n<ul>\n <li><strong>Consistent API</strong> to connect to various DBMS's</li>\n
37
- \ <li><strong>Type casting</strong> to Ruby types</li>\n <li><strong>Time zone
38
- handling</strong> (via the DBMS, not via some crazy\n time logic in Ruby)</li>\n
39
- \ <li><strong>Native bind values</strong> parameterization of queries, where\n supported
40
- by the DBMS</li>\n <li><strong>Buffered result sets</strong> (i.e. cursors, to
41
- avoid\n exhausting memory)</li>\n <li>Retrieve query info from executed commands
42
- (e.g. affected rows)</li>\n <li><strong>Access RETURNING values</strong> just like
43
- any read query</li>\n <li><strong>Native prepared statements</strong> where supported,
44
- emulated\n where not</li>\n <li>Results given using simple <strong>core Ruby
45
- data types</strong></li>\n</ul>\n\n== RDBMS Support\n\nSupport for each RDBMS is
46
- provided in separate gems, so as to minimize the\ninstallation requirements and
47
- to facilitate the maintenace of each driver. Many\ngems are maintained by separate
48
- users who work more closely with those RDBMS's.\n\nDue to the nature of this gem,
49
- most of the nitty-gritty code is actually\nwritten in C.\n\nSee the official README
50
- for full details."
36
+ library:\n\n * Consistent API to connect to various DBMS's\n * Type casting to
37
+ Ruby types\n * Time zone handling (via the DBMS, not via some crazy time logic
38
+ in Ruby)\n * Native bind values parameterization of queries, where supported by
39
+ the DBMS\n * Buffered result sets (i.e. cursors, to avoid exhausting memory)\n
40
+ \ * Retrieve query info from executed commands (e.g. affected rows)\n * Access
41
+ RETURNING values just like any read query\n * Native prepared statements where
42
+ supported, emulated where not\n * Results given using simple core Ruby data types\n\n==
43
+ RDBMS Support\n\nSupport for each RDBMS is provided in separate gems, so as to minimize
44
+ the\ninstallation requirements and to facilitate the maintenace of each driver.
45
+ Many\ngems are maintained by separate users who work more closely with those RDBMS's.\n\nDue
46
+ to the nature of this gem, most of the nitty-gritty code is actually\nwritten in
47
+ C.\n\nSee the official README for full details."
51
48
  email:
52
49
  - chris@w3style.co.uk
53
50
  executables: []