-
Notifications
You must be signed in to change notification settings - Fork 26
/
active_record_shards.gemspec
23 lines (19 loc) · 1.1 KB
/
active_record_shards.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new "active_record_shards", "5.5.1" do |s|
s.authors = ["Benjamin Quorning", "Gabe Martin-Dempesy", "Pierre Schambacher", "Mick Staugaard", "Eric Chapweske", "Ben Osheroff"]
s.homepage = "https://github.com/zendesk/active_record_shards"
s.summary = "Simple database switching for ActiveRecord."
s.description = "Easily run queries on shard and replica databases."
s.license = "MIT"
s.required_ruby_version = ">= 2.6"
s.add_runtime_dependency("activerecord", ">= 5.1", "< 7.1")
s.add_runtime_dependency("activesupport", ">= 5.1", "< 7.1")
s.add_development_dependency("bump")
s.add_development_dependency("minitest", ">= 5.10.0")
s.add_development_dependency("mysql2")
s.add_development_dependency("rake", '~> 12.0')
s.add_development_dependency("rubocop", "~> 0.77.0")
s.add_development_dependency("rubocop-minitest", "~> 0.5.0")
s.add_development_dependency("rubocop-performance", "~> 1.5.1")
s.files = Dir["lib/**/*"] + ["README.md"]
end