-
Notifications
You must be signed in to change notification settings - Fork 5
/
pilfer.gemspec
29 lines (24 loc) · 1.04 KB
/
pilfer.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pilfer/version'
Gem::Specification.new do |spec|
spec.name = 'pilfer'
spec.version = Pilfer::VERSION
spec.authors = ['Eric Lindvall', 'Larry Marburger']
spec.email = ['[email protected]', '[email protected]']
spec.homepage = 'https://github.com/eric/pilfer'
spec.license = 'MIT'
spec.summary = 'line-profiler for ruby and rack'
spec.description = 'pilfer uses rblineprof to measure how long each line ' +
'of code takes to execute and the number of times it ' +
'was called.'
spec.files = %w(Gemfile LICENSE README.md)
spec.files << 'pilfer.gemspec'
spec.files += Dir.glob('lib/**/*.rb')
spec.files += Dir.glob('spec/**/*.rb')
spec.files += Dir.glob('script/*')
spec.test_files = Dir.glob('spec/**/*.rb')
spec.add_dependency 'rblineprof', '~> 0.3.2'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.required_rubygems_version = '>= 1.3.6'
end