forked from ruby-prof/ruby-prof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-prof.gemspec
57 lines (52 loc) · 2.17 KB
/
ruby-prof.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby-prof/version"
Gem::Specification.new do |spec|
spec.name = "ruby-prof"
spec.homepage = "https://github.com/ruby-prof/ruby-prof/"
spec.summary = "Fast Ruby profiler"
spec.description = <<-EOF
ruby-prof is a fast code profiler for Ruby. It is a C extension and
therefore is many times faster than the standard Ruby profiler. It
supports both flat and graph profiles. For each method, graph profiles
show how long the method ran, which methods called it and which
methods it called. RubyProf generate both text and html and can output
it to standard out or to a file.
EOF
spec.license = 'BSD-2-Clause'
spec.version = RubyProf::VERSION
spec.author = "Shugo Maeda, Charlie Savage, Roger Pack, Stefan Kaes"
spec.platform = Gem::Platform::RUBY
spec.require_path = "lib"
spec.bindir = "bin"
spec.executables = ["ruby-prof", "ruby-prof-check-trace"]
spec.extensions = ["ext/ruby_prof/extconf.rb"]
spec.files = Dir['CHANGES',
'LICENSE',
'Rakefile',
'README.rdoc',
'ruby-prof.gemspec',
'bin/ruby-prof',
'bin/ruby-prof-check-trace',
'doc/**/*',
'examples/*',
'ext/ruby_prof/extconf.rb',
'ext/ruby_prof/*.c',
'ext/ruby_prof/*.h',
'ext/ruby_prof/vc/*.sln',
'ext/ruby_prof/vc/*.vcxproj',
'lib/ruby-prof.rb',
'lib/unprof.rb',
'lib/ruby-prof/*.rb',
'lib/ruby-prof/images/*.png',
'lib/ruby-prof/printers/*.rb',
'test/*.rb']
spec.test_files = Dir["test/test_*.rb"]
spec.required_ruby_version = '>= 1.9.3'
spec.date = Time.now.strftime('%Y-%m-%d')
spec.homepage = 'https://github.com/ruby-prof/ruby-prof'
spec.add_development_dependency('minitest', '~> 4.0')
spec.add_development_dependency('rake-compiler')
spec.add_development_dependency('rdoc')
end