-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheap_hop.gemspec
More file actions
33 lines (29 loc) · 1.42 KB
/
heap_hop.gemspec
File metadata and controls
33 lines (29 loc) · 1.42 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
32
33
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "heap_hop/version"
Gem::Specification.new do |spec|
spec.name = "heap_hop"
spec.version = HeapHop::VERSION
spec.authors = ["Tim Pease"]
spec.email = ["tim.pease@gmail.com"]
spec.summary = %q{A tool for analyzing Ruby heap dumps}
spec.description = %q{HeapHop is a tool for analyzing Ruby heap dumps. It
provides a small web application that you can run
locally for analyzing and interacting with the
information stored in the heap dump.}
spec.homepage = "https://github.com/TwP/heap_hop"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
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 "amalgalite", "~> 1.5"
spec.add_dependency "multi_json", "~> 1.11"
spec.add_dependency "oj", "~> 2.14"
spec.add_dependency "sinatra", "~> 1.4"
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "minitest", "~> 5.8"
spec.add_development_dependency "minitest-reporters", "~> 1.1"
spec.add_development_dependency "rake", "~> 10.4"
end