-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathactiverecord-explain-analyze.gemspec
31 lines (26 loc) · 1.24 KB
/
activerecord-explain-analyze.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
30
31
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "activerecord-explain-analyze/version"
Gem::Specification.new do |spec|
spec.name = "activerecord-explain-analyze"
spec.version = ActiveRecordExplainAnalyze::VERSION
spec.authors = ["Peter Graham"]
spec.email = ["[email protected]"]
spec.licenses = ["MIT"]
spec.summary = %q{ActiveRecord#explain with support for EXPLAIN ANALYZE and a variety of output formats}
spec.description = %q{Extends ActiveRecord#explain with support for EXPLAIN ANALYZE and output formats of JSON, XML, and YAML.}
spec.homepage = "https://github.com/6/activerecord-explain-analyze"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "activerecord", ">= 4"
spec.add_dependency "pg"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "pry"
spec.add_development_dependency "database_cleaner"
end