-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpry-measure.gemspec
More file actions
24 lines (19 loc) · 815 Bytes
/
Copy pathpry-measure.gemspec
File metadata and controls
24 lines (19 loc) · 815 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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/pry-measure/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'pry-measure'
s.version = PryMeasure::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Matthew Dodds']
s.email = ['matthewrusselldodds@gmail.com']
s.homepage = 'http://github.com/matthewrdodds/pry-measure'
s.summary = 'Adds simple benchmark tool to pry'
s.description = 'Provides benchmark helper methods for easier measuring'
s.license = 'MIT'
s.required_rubygems_version = '>= 1.3.6'
s.files = Dir['{lib}/**/*.rb', 'bin/*', 'LICENSE', '*.md']
s.require_path = 'lib'
s.add_dependency 'pry', '~> 0.9.10'
s.add_development_dependency 'rspec', '~> 3.3'
s.add_development_dependency 'rake', '~> 10.4'
end