Reputation: 48913
I run this command:
gem install activerecord-sqlserver-adapter --source=http://gems.rubyonrails.org
and it fails with
ERROR: Could not find a valid gem 'activerecord-sqlserver-adapter' (>= 0) in any repository
How can I install the Microsoft SQL Server adapter?
Upvotes: 1
Views: 692
Reputation: 48913
Remove the source, and it works:
gem install activerecord-sqlserver-adapter
Cheers!
Upvotes: 1