-
Notifications
You must be signed in to change notification settings - Fork 19
/
where_exists.gemspec
27 lines (22 loc) · 970 Bytes
/
where_exists.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "where_exists/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "where_exists"
s.version = WhereExists::VERSION
s.authors = ["Eugene Zolotarev"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/eugzol/where_exists"
s.summary = "#where_exists extension of ActiveRecord"
s.description = 'Rails way to harness the power of SQL "EXISTS" statement'
s.license = "MIT"
s.files = Dir["lib/**/*", "MIT-LICENSE", "Rakefile", "README.markdown"]
s.test_files = Dir["test/**/*"]
s.add_dependency "activerecord", ">= 5.2", "< 8.1"
s.add_development_dependency "sqlite3", ">= 1.4"
s.add_development_dependency "minitest", "~> 5.10"
s.add_development_dependency "rake", "~> 12.3"
s.add_development_dependency "rdoc", "~> 6.0"
s.add_development_dependency "appraisal"
end