-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
27 lines (24 loc) · 871 Bytes
/
Rakefile
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 'rake'
require 'rake/testtask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test MRI instrumentation'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "mri_instrumentation"
s.summary = "Piggy backs of the dtrace pid provider for visibility into the Ruby VM"
s.email = "[email protected]"
s.homepage = "http://github.com/methodmissing/mri_instrumentation"
s.description = "Piggy backs of the dtrace pid provider for visibility into the Ruby VM."
s.authors = ["Lourens Naudé"]
s.files = FileList["[A-Z]*", "{lib,test,rails,tasks,probes}/**/*"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end