-
Notifications
You must be signed in to change notification settings - Fork 1
/
mixed_gauge.gemspec
29 lines (25 loc) · 1.2 KB
/
mixed_gauge.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mixed_gauge/version'
Gem::Specification.new do |spec|
spec.name = 'mixed_gauge'
spec.version = MixedGauge::VERSION
spec.authors = ['Taiki Ono']
spec.email = ['taiks.4559@gmail.com']
spec.summary = %q{An ActiveRecord extension for database sharding.}
spec.description = %q{Offers simple key-value action, node management with hash slots, allow to use some AR::B actions.}
spec.homepage = 'https://github.com/taiki45/mixed_gauge'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'activesupport', '>= 4.0.0'
spec.add_dependency 'activerecord', '>= 4.0.0'
spec.add_development_dependency 'bundler', '~> 1.9'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'sqlite3'
end