rdo 0.0.1 → 0.0.2

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 +8 -1
  2. data/rdo.gemspec +13 -12
  3. metadata +13 -10
@@ -1,3 +1,10 @@
1
+ ##
2
+ # RDO: Ruby Data Objects.
3
+ # Copyright © 2012 Chris Corbyn.
4
+ #
5
+ # See LICENSE file for details.
6
+ ##
7
+
1
8
  module RDO
2
- VERSION = "0.0.1"
9
+ VERSION = "0.0.2"
3
10
  end
@@ -17,20 +17,21 @@ 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
- - Connect to different types of RDBMS in a consistent way
21
- - Type casting
22
- - Safe parameterization of queries
23
- - Buffered query results
24
- - Fetching meta data from executed commands
25
- - Access RETURNING values just like any read query
26
- - Prepared statements (emulated where no native support exists)
27
- - Simple core ruby data types
28
-
29
- === RDBMS Support
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**
29
+
30
+ == RDBMS Support
30
31
 
31
32
  Support for each RDBMS is provided in separate gems, so as to minimize the
32
- installation requirements. Many gems are maintained by separate users who
33
- work more closely with those RDBMS's.
33
+ installation requirements and to facilitate the maintenace of each driver. Many
34
+ gems are maintained by separate users who work more closely with those RDBMS's.
34
35
 
35
36
  Due to the nature of this gem, most of the nitty-gritty code is actually
36
37
  written in C.
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.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -33,15 +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 - Connect to different types of RDBMS in a consistent way\n - Type
37
- casting\n - Safe parameterization of queries\n - Buffered query results\n - Fetching
38
- meta data from executed commands\n - Access RETURNING values just like any read
39
- query\n - Prepared statements (emulated where no native support exists)\n - Simple
40
- core ruby data types\n\n=== RDBMS Support\n\nSupport for each RDBMS is provided
41
- in separate gems, so as to minimize the\ninstallation requirements. Many gems are
42
- maintained by separate users who\nwork more closely with those RDBMS's.\n\nDue to
43
- the nature of this gem, most of the nitty-gritty code is actually\nwritten in C.\n\nSee
44
- the official README for full details."
36
+ library:\n\n - **Consistent API** to connect to various DBMS's\n - **Type casting**
37
+ to Ruby types\n - **Time zone handling** (via the DBMS, not via some crazy time
38
+ logic in Ruby)\n - **Native bind values** parameterization of queries, where supported
39
+ by 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**
42
+ where supported, emulated where not\n - Results given using simple **core Ruby
43
+ data types**\n\n== RDBMS Support\n\nSupport for each RDBMS is provided in separate
44
+ gems, so as to minimize the\ninstallation requirements and to facilitate the maintenace
45
+ of each driver. Many\ngems are maintained by separate users who work more closely
46
+ with those RDBMS's.\n\nDue to the nature of this gem, most of the nitty-gritty code
47
+ is actually\nwritten in C.\n\nSee the official README for full details."
45
48
  email:
46
49
  - chris@w3style.co.uk
47
50
  executables: []