rails_sql_views 0.6.0 → 0.6.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/CHANGELOG CHANGED
@@ -5,10 +5,14 @@
5
5
  * Added support for PostgreSQL (Michael Schuerig)
6
6
  * Fixed the schema dumper
7
7
 
8
- 0.5.1 - Released Jan 10, 2006
8
+ 0.5.1 - Released Jan 10, 2007
9
9
  * Patch by Clifford T. Matthews to use String.dump to dump out the view select statement
10
10
 
11
- 0.6.0 -
11
+ 0.6.0 - Released May 9, 2007
12
12
  * Added support for SQL Server (Seth Ladd)-
13
13
  * Added support for using views to map non-friendly database field names to AR-friendly names (Nathan Vack)
14
- * Added support for Oracle (Alistair Davidson)
14
+ * Added support for Oracle (Alistair Davidson)
15
+
16
+ 0.6.1 - Released June 6, 2007
17
+ * Added test for union support
18
+ * Updated tests to include new table to support union test
data/README CHANGED
@@ -37,6 +37,8 @@ The following drivers are supported:
37
37
 
38
38
  MySQL
39
39
  PostgreSQL (Native and Pure Ruby)
40
+ Oracle
41
+ SQL Server
40
42
 
41
43
  == Known Issues
42
44
 
@@ -2,7 +2,7 @@ module RailsSqlViews
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 6
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: rails_sql_views
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.6.0
7
- date: 2007-05-09 00:00:00 -04:00
6
+ version: 0.6.1
7
+ date: 2007-06-06 00:00:00 -04:00
8
8
  summary: Adds SQL Views to Rails.
9
9
  require_paths:
10
10
  - lib