forked from ilkerinanc/partitioned
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partitioned.gemspec
28 lines (24 loc) · 1.24 KB
/
partitioned.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "partitioned/version"
Gem::Specification.new do |s|
s.name = 'partitioned'
s.version = Partitioned::VERSION
s.license = 'New BSD License'
s.date = '2015-10-02'
s.summary = "Postgres table partitioning support for ActiveRecord."
s.description = "A gem providing support for table partitioning in ActiveRecord. Support is available for postgres and AWS RedShift databases. Other features include child table management (creation and deletion) and bulk data creating and updating."
s.authors = ["Keith Gabryelski", "Aleksandr Dembskiy", "Edward Slavich"]
s.email = '[email protected]'
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/partitioned'
s.add_development_dependency "jquery-rails"
s.add_dependency 'pg'
s.add_dependency 'bulk_data_methods'
s.add_dependency 'activerecord-redshift-adapter'
s.add_dependency 'activerecord', '~> 4.1.13'
s.add_development_dependency 'rails', '~> 4.1.13'
s.add_development_dependency 'rspec-rails'
end