-
Notifications
You must be signed in to change notification settings - Fork 11
/
app_profiler.gemspec
38 lines (32 loc) · 1.16 KB
/
app_profiler.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
32
33
34
35
36
37
38
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "app_profiler/version"
Gem::Specification.new do |spec|
spec.name = "app_profiler"
spec.version = AppProfiler::VERSION
# In alphabetical order.
spec.authors = [
"Gannon McGibbon",
"Jay Ching Lim",
"João Júnior",
"Jon Simpson",
"Kevin Jalbert",
"Scott Francis",
]
spec.email = ["[email protected]"]
spec.summary = "Collect performance profiles for your Rails application."
spec.homepage = "https://github.com/Shopify/app_profiler"
spec.files = Dir["lib/**/*.rb"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.add_dependency("activesupport", ">= 5.2")
spec.add_dependency("rack")
spec.add_dependency("stackprof", "~> 0.2")
spec.add_development_dependency("bundler")
spec.add_development_dependency("minitest")
spec.add_development_dependency("minitest-stub-const", "0.6")
spec.add_development_dependency("mocha")
spec.add_development_dependency("rake")
end