-
Notifications
You must be signed in to change notification settings - Fork 7
/
ruby_prof_rails.gemspec
30 lines (25 loc) · 1.21 KB
/
ruby_prof_rails.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'ruby-prof/rails/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'ruby-prof-rails'
s.version = RubyProf::Rails::VERSION
s.authors = ['Thomas Leishman']
s.email = ['tleish@gmail.com']
s.homepage = 'https://github.com/tleish/ruby-prof-rails'
s.summary = 'Configure and Profile Rails applications using the ruby-prof gem.'
s.description = %q{rails-ruby-prof is Rails Rack Middleware that allows configuration and profiling
of a Rails application using the ruby-prof gem for a specific session.
This makes it easier to profile production applications without requiring a
server restart or affecting other users sessions.}
s.license = 'MIT'
s.files = Dir['{app,config,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['test/**/*']
s.add_dependency 'rails', '>= 3.0'
s.add_dependency 'ruby-prof'
s.add_dependency 'ruby-prof-flamegraph'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'sinatra'
s.add_development_dependency 'mocha'
end