forked from ilkerinanc/partitioned
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartitioned.gemspec
More file actions
21 lines (19 loc) · 942 Bytes
/
partitioned.gemspec
File metadata and controls
21 lines (19 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$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.date = '2012-03-07'
s.summary = "Postgres table partitioning support for ActiveRecord."
s.description = "A gem providing support for table partitioning in ActiveRecord. Support is currently only supported for postgres database. Other features include child table management (creation and deletion) abd bulk data creating and updating"
s.authors = ["Keith Gabryelski", "Aleksandr Dembskiy"]
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://www.fiksu.com'
s.add_dependency('pg')
s.add_dependency "rails", "~> 3.1.0"
s.add_dependency('rspec-rails')
end