forked from rails-sqlserver/activerecord-sqlserver-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactiverecord-sqlserver-adapter.gemspec
More file actions
24 lines (19 loc) · 1.01 KB
/
activerecord-sqlserver-adapter.gemspec
File metadata and controls
24 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "active_record/connection_adapters/sqlserver/version"
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "activerecord-sqlserver-adapter"
s.version = ActiveRecord::ConnectionAdapters::Sqlserver::Version::VERSION
s.summary = "SQL Server 2005 and 2008 Adapter For ActiveRecord."
s.description = "SQL Server 2005 and 2008 Adapter For ActiveRecord"
s.authors = ['Ken Collins', 'Murray Steele', 'Shawn Balestracci', 'Joe Rafaniello', 'Tom Ward']
s.email = "ken@metaskills.net"
s.homepage = "http://github.com/rails-sqlserver/activerecord-sqlserver-adapter"
s.files = Dir['CHANGELOG', 'MIT-LICENSE', 'README.rdoc', 'lib/**/*' ]
s.require_path = 'lib'
s.extra_rdoc_files = ['README.rdoc']
s.rdoc_options.concat ['--main', 'README.rdoc']
s.rubyforge_project = 'activerecord-sqlserver-adapter'
s.add_dependency('activerecord', '~> 3.1.0')
end