forked from christophermanning/activerecord-redshift-adapter
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathactiverecord-redshift-adapter.gemspec
More file actions
24 lines (22 loc) · 970 Bytes
/
activerecord-redshift-adapter.gemspec
File metadata and controls
24 lines (22 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "activerecord_redshift_adapter/version"
Gem::Specification.new do |s|
s.name = 'activerecord-redshift-adapter'
s.version = ActiverecordRedshiftAdapter::VERSION
s.license = 'New BSD License'
s.date = '2014-03-30'
s.summary = "Rails 3 database adapter support for AWS RedShift."
s.description = "This gem provides the Rails 3 with database adapter for AWS RedShift."
s.authors = ["Keith Gabryelski"]
s.email = 'keith@fiksu.com'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = 'lib'
s.homepage = 'http://github.com/fiksu/activerecord-redshift-adapter'
s.add_dependency "pg"
s.add_dependency "activerecord", '>= 3.0.0'
s.add_dependency "activesupport", '>= 3.0.0'
s.add_dependency "arel", '>= 3.0.0'
s.add_development_dependency 'rspec'
end