rails-sqlserver-2000-2005-adapter 2.2.9 → 2.2.10

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
@@ -4,6 +4,11 @@ MASTER
4
4
  *
5
5
 
6
6
 
7
+ * 2.2.10 * (January 22nd, 2009)
8
+
9
+ * Add a rails-sqlserver-2000-2005-adapter.rb file so that long :lib option for config.gem is no longer needed.
10
+
11
+
7
12
  * 2.2.9 * (January 22nd, 2009)
8
13
 
9
14
  * Fixing a small bug in the deprecated DBI::Timestamp conversion so it correctly converts nanosecond whole
data/README.rdoc CHANGED
@@ -122,7 +122,7 @@ Optionally configure your gem dependencies in your rails environment.rb file.
122
122
 
123
123
  config.gem 'dbi', :version => '0.4.0'
124
124
  config.gem 'dbd-odbc', :version => '0.2.4', :lib => 'dbd/ODBC'
125
- config.gem 'rails-sqlserver-2000-2005-adapter', :lib => 'active_record/connection_adapters/sqlserver_adapter'
125
+ config.gem 'rails-sqlserver-2000-2005-adapter', :source => 'http://gems.github.com'
126
126
 
127
127
  Here are some external links for libraries and/or tutorials on how to install any other additional components to use this adapter. If you know of a good one that we can include here, just let us know.
128
128
 
@@ -150,7 +150,7 @@ module ActiveRecord
150
150
  class SQLServerAdapter < AbstractAdapter
151
151
 
152
152
  ADAPTER_NAME = 'SQLServer'.freeze
153
- VERSION = '2.2.9'.freeze
153
+ VERSION = '2.2.10'.freeze
154
154
  DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+(\d{4})/
155
155
  SUPPORTED_VERSIONS = [2000,2005].freeze
156
156
  LIMITABLE_TYPES = ['string','integer','float','char','nchar','varchar','nvarchar'].freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-sqlserver-2000-2005-adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.9
4
+ version: 2.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins
@@ -35,6 +35,7 @@ files:
35
35
  - autotest/discover.rb
36
36
  - autotest/railssqlserver.rb
37
37
  - autotest/sqlserver.rb
38
+ - lib/rails-sqlserver-2000-2005-adapter.rb.rb
38
39
  - lib/active_record/connection_adapters/sqlserver_adapter.rb
39
40
  - lib/core_ext/active_record.rb
40
41
  - lib/core_ext/dbi.rb