forked from SamSaffron/MiniProfiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrack-mini-profiler.gemspec
More file actions
26 lines (24 loc) · 914 Bytes
/
rack-mini-profiler.gemspec
File metadata and controls
26 lines (24 loc) · 914 Bytes
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
Gem::Specification.new do |s|
s.name = "rack-mini-profiler"
s.version = "0.1.23"
s.summary = "Profiles loading speed for rack applications."
s.authors = ["Sam Saffron", "Robin Ward","Aleks Totic"]
s.description = "Profiling toolkit for Rack applications with Rails integration. Client Side profiling, DB profiling and Server profiling."
s.email = "sam.saffron@gmail.com"
s.homepage = "http://miniprofiler.com"
s.files = [
'rack-mini-profiler.gemspec',
].concat( Dir.glob('Ruby/lib/**/*').reject {|f| File.directory?(f) || f =~ /~$/ } )
s.extra_rdoc_files = [
"Ruby/README.md",
"Ruby/CHANGELOG"
]
s.add_runtime_dependency 'rack', '>= 1.1.3'
if RUBY_VERSION < "1.9"
s.add_runtime_dependency 'json', '>= 1.6'
end
s.add_development_dependency 'rake'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'activerecord', '~> 3.0'
s.require_paths = ["Ruby/lib"]
end