-
Notifications
You must be signed in to change notification settings - Fork 18
/
rspec-prof.gemspec
32 lines (28 loc) · 1.08 KB
/
rspec-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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.licenses = [ 'MIT' ]
s.name = "rspec-prof"
s.version = "0.0.7"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Colin MacKenzie IV"]
s.date = "2011-08-27"
s.description = "Integrates ruby-prof with RSpec, allowing you to easily profile your RSpec examples."
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = `git ls-files`.split("\n")
s.homepage = "http://www.thoughtsincomputation.com/"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.10"
s.summary = "Integrates ruby-prof with RSpec, allowing you to easily profile your RSpec examples."
s.test_files = `git ls-files -- features/`.split("\n")
s.add_runtime_dependency 'rspec', '~> 3.0'
s.add_runtime_dependency 'ruby-prof'
s.add_development_dependency 'cucumber'
s.add_development_dependency 'aruba'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'rake'
end