File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
lib/active_record/connection_adapters Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11
2+ * 3.0.8 *
3+
4+ * Support for ActiveRecord v3.0.3 and ARel v2.0.7
5+
6+
27* 3.0.7 *
38
49* Properly quote table names when reflecting on views.
Original file line number Diff line number Diff line change 22Gem ::Specification . new do |s |
33 s . platform = Gem ::Platform ::RUBY
44 s . name = "activerecord-sqlserver-adapter"
5- s . version = "3.0.7 "
5+ s . version = "3.0.8 "
66 s . summary = "SQL Server 2005 and 2008 Adapter For ActiveRecord."
77 s . description = "SQL Server 2005 and 2008 Adapter For ActiveRecord"
88
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717 s . rdoc_options . concat [ '--main' , 'README.rdoc' ]
1818 s . rubyforge_project = 'activerecord-sqlserver-adapter'
1919
20- s . add_dependency ( 'activerecord' , '~> 3.0.0 ' )
21- s . add_dependency ( 'arel' , '~> 1 .0.0 ' )
20+ s . add_dependency ( 'activerecord' , '~> 3.0.3 ' )
21+ s . add_dependency ( 'arel' , '~> 2 .0.7 ' )
2222end
2323
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ class SQLServerAdapter < AbstractAdapter
164164 include Sqlserver ::Errors
165165
166166 ADAPTER_NAME = 'SQLServer' . freeze
167- VERSION = '3.0.7 ' . freeze
167+ VERSION = '3.0.8 ' . freeze
168168 DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s +(\d {4})/
169169 SUPPORTED_VERSIONS = [ 2005 , 2008 ] . freeze
170170
You can’t perform that action at this time.
0 commit comments