forked from phluid61/memory-profiler-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory-profiler.gemspec
27 lines (23 loc) · 1.05 KB
/
memory-profiler.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
require 'rubygems'
require 'rubygems/user_interaction' if RUBY_VERSION >= '1.9.1' and Gem::VERSION >= '1.4'
require 'rake'
Gem::Specification.new do |s|
s.name = 'memory-profiler'
s.version = '1.0.2'
s.platform = Gem::Platform::RUBY
s.authors = ['Matthew Kerwin']
s.email = ['matthew@kerwin.net.au']
s.homepage = 'https://github.com/phluid61/memory-profiler-gem'
s.summary = 'A Ruby Memory Profiler'
s.description = 'A rudimentary memory profiler that uses pure in-VM techniques to analyse the object space and attempt to determine memory usage trends.'
s.license = 'Apache License 2.0'
s.rubyforge_project = 'mem-prof-ruby'
s.required_rubygems_version = '>= 1.3.6'
s.files = Rake::FileList['lib/**/*.rb', '[A-Z]*'].to_a
s.require_path = 'lib'
s.has_rdoc = true
s.rdoc_options << '--title' << 'Memory Profiler' <<
'--main' << 'MemoryProfiler' <<
'--line-numbers' <<
'--tab-width' << '2'
end