-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactive-record-profiler.gemspec
More file actions
31 lines (27 loc) · 1.25 KB
/
active-record-profiler.gemspec
File metadata and controls
31 lines (27 loc) · 1.25 KB
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 'active-record-profiler/version'
Gem::Specification.new do |spec|
spec.name = "active-record-profiler"
spec.version = ActiveRecordProfiler::VERSION
spec.authors = ["Ben Turner"]
spec.email = ["codewrangler@outofcoffee.com"]
spec.summary = %q{Enhances ActiveRecord logging and profiles queries}
spec.description = <<-EOF
See where each database call is coming from in your code, and get query
profiling to see which queries are taking up the most time in the database.
EOF
spec.homepage = "https://github.com/kindjar/active_record_profiler"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "rails", ">= 5.0", "< 6.0"
spec.add_dependency "jquery-rails"
spec.add_development_dependency "bundler", ">= 2.2.33"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "minitest", "~> 5.1"
spec.add_development_dependency "sqlite3", ">= 1.3.6"
end