forked from kovyrin/db-charmer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
db-charmer.gemspec
29 lines (23 loc) · 1.09 KB
/
db-charmer.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
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'db_charmer/version'
Gem::Specification.new do |s|
s.name = 'db-charmer'
s.version = DbCharmer::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = [ 'Oleksiy Kovyrin' ]
s.email = '[email protected]'
s.homepage = 'http://kovyrin.github.com/db-charmer'
s.summary = 'ActiveRecord Connections Magic (slaves, multiple connections, etc)'
s.description = 'DbCharmer is a Rails plugin (and gem) that could be used to manage AR model connections, implement master/slave query schemes, sharding and other magic features many high-scale applications need.'
s.rdoc_options = [ '--charset=UTF-8' ]
s.files = `git ls-files`.split("\n")
s.require_paths = [ 'lib' ]
s.extra_rdoc_files = [ 'LICENSE', 'README.rdoc' ]
# Dependencies
s.add_dependency 'activesupport', '<= 3.2.2'
s.add_dependency 'activerecord', '<= 3.2.2'
s.add_development_dependency 'rspec'
s.add_development_dependency 'yard'
s.add_development_dependency 'actionpack'
end