We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c1562 commit 75ce92aCopy full SHA for 75ce92a
Gemfile
@@ -6,7 +6,8 @@ if ENV['RAILS_SOURCE']
6
else
7
spec = eval(File.read('activerecord-sqlserver-adapter.gemspec'))
8
ar_version = spec.dependencies.detect{ |d|d.name == 'activerecord' }.requirement.requirements.first.last.version
9
- gem 'rails', :git => "git://github.com/rails/rails.git", :tag => "v#{ar_version}"
+ version = ENV['RAILS_VERSION'] || ar_version
10
+ gem 'rails', :git => "git://github.com/rails/rails.git", :tag => "v#{version}"
11
end
12
13
if ENV['AREL']
@@ -17,7 +18,7 @@ group :tinytds do
17
18
if ENV['TINYTDS_SOURCE']
19
gem 'tiny_tds', :path => ENV['TINYTDS_SOURCE']
20
- gem 'tiny_tds', '>= 0.4.5'
21
+ gem 'tiny_tds', '0.5.0.rc1'
22
23
24
0 commit comments