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
19 lines (18 loc) · 922 Bytes
/
partitioned.gemspec
File metadata and controls
19 lines (18 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = 'partitioned'
s.version = '0.8.0'
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('activerecord', '>= 2.3.0')
s.add_dependency('activesupport', '>= 2.3.2')
s.add_dependency('rspec-rails')
end