benches.gemspec in benches-0.2.0 vs benches.gemspec in benches-0.3.0
- old
+ new
@@ -7,15 +7,18 @@
s.version = Benches::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Evan Hemsley"]
s.email = ["evan.hemsley@gmail.com"]
s.homepage = 'http://github.com/ehemsley/benches'
- s.summary = 'A simple DSL for benchmarking your Ruby code'
- s.description = 'Benches defines a simple benchmarking DSL that allows you to create benchmark routines for your Ruby code.'
+ s.summary = 'A simple rspec matcher for testing performance metrics'
+ s.description = 'Benches defines a simple rspec matcher that allows you to create benchmarking specs for your Ruby code.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
+
+ s.add_dependency 'rspec', '~> 2.14', '>= 2.14.1'
+ s.add_dependency 'activesupport', '~> 4.0', '>= 4.0.3'
s.license = 'MIT'
end