Skip to content

Commit 78114ca

Browse files
committed
Add a rails-sqlserver-2000-2005-adapter.rb file so that long :lib option for config.gem is no longer needed.
1 parent e26bfc7 commit 78114ca

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

2000-2005-adapter.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "2000-2005-adapter"
3-
s.version = "2.2.9"
3+
s.version = "2.2.10"
44
s.date = "2009-01-22"
55
s.summary = "SQL Server 2000 & 2005 Adapter For Rails."
66
s.email = "ken@metaskills.net"
@@ -18,6 +18,7 @@ Gem::Specification.new do |s|
1818
"autotest/discover.rb",
1919
"autotest/railssqlserver.rb",
2020
"autotest/sqlserver.rb",
21+
"lib/rails-sqlserver-2000-2005-adapter.rb.rb",
2122
"lib/active_record/connection_adapters/sqlserver_adapter.rb",
2223
"lib/core_ext/active_record.rb",
2324
"lib/core_ext/dbi.rb" ]

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ MASTER
44
*
55

66

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+
712
* 2.2.9 * (January 22nd, 2009)
813

914
* Fixing a small bug in the deprecated DBI::Timestamp conversion so it correctly converts nanosecond whole

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Optionally configure your gem dependencies in your rails environment.rb file.
122122

123123
config.gem 'dbi', :version => '0.4.0'
124124
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'
126126

127127
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.
128128

lib/active_record/connection_adapters/sqlserver_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def simplified_datetime
150150
class SQLServerAdapter < AbstractAdapter
151151

152152
ADAPTER_NAME = 'SQLServer'.freeze
153-
VERSION = '2.2.9'.freeze
153+
VERSION = '2.2.10'.freeze
154154
DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+(\d{4})/
155155
SUPPORTED_VERSIONS = [2000,2005].freeze
156156
LIMITABLE_TYPES = ['string','integer','float','char','nchar','varchar','nvarchar'].freeze

0 commit comments

Comments
 (0)