Skip to content

Commit 4199be4

Browse files
committed
Merge branch 'master' of github.com:rails-sqlserver/activerecord-sqlserver-adapter
2 parents cbead13 + 78f15fa commit 4199be4

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

RUNNING_UNIT_TESTS

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,17 @@ Clone adapter git://github.com/rails-sqlserver/activerecord-sqlserver-adapter.gi
2121
The master branch is the one under development for rails 3, track the repos 2-3-stable
2222
branch for 2.x development.
2323

24-
The tests of this adapter depend on the existence of the rails and/or arel source
25-
which can be cloned at git://github.com/rails/rails.git and git://github.com/rails/arel.git
24+
The tests of this adapter depend on the existence of the rails which can be cloned at
25+
git://github.com/rails/rails.git
2626

27-
Once you have cloned these repos set the RAILS_SOURCE and AREL environment variables
28-
to their full path. For instance:
27+
Once you have cloned these repos set the RAILS_SOURCE environment variable to its
28+
full path. For instance:
2929

3030
∴ echo $RAILS_SOURCE
3131
/Users/kencollins/Repositories/rails
3232

33-
∴ echo $AREL
34-
/Users/kencollins/Repositories/arel
35-
3633
Do not forget to checkout the version tags of each repo that match either our gemspec
37-
or what version your tests target. For instance, v3.0.3 tag for ActiveRecord and
38-
v2.0.7 for ARel.
34+
or what version your tests target. For instance, v3.0.3 tag for Rails/ActiveRecord.
3935

4036

4137
= Setup Connection Mode

activerecord-sqlserver-adapter.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Gem::Specification.new do |s|
33
s.platform = Gem::Platform::RUBY
44
s.name = "activerecord-sqlserver-adapter"
5-
s.version = "3.1.0"
5+
s.version = "3.1.0.rc2"
66
s.summary = "SQL Server 2005 and 2008 Adapter For ActiveRecord."
77
s.description = "SQL Server 2005 and 2008 Adapter For ActiveRecord"
88

@@ -16,6 +16,6 @@ Gem::Specification.new do |s|
1616
s.rdoc_options.concat ['--main', 'README.rdoc']
1717
s.rubyforge_project = 'activerecord-sqlserver-adapter'
1818

19-
s.add_dependency('activerecord', '~> 3.1.0')
19+
s.add_dependency('activerecord', '~> 3.1.0.rc1')
2020
end
2121

lib/active_record/connection_adapters/sqlserver_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class SQLServerAdapter < AbstractAdapter
159159
include Sqlserver::Errors
160160

161161
ADAPTER_NAME = 'SQLServer'.freeze
162-
VERSION = '3.1.0'.freeze
162+
VERSION = '3.1.0.rc2'.freeze
163163
DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+"?(\d{4}|\w+)"?/
164164
SUPPORTED_VERSIONS = [2005,2008,2010,2011].freeze
165165

0 commit comments

Comments
 (0)