public
Description: Provides a simple API for instrumenting Ruby method invocations
Homepage: http://fiveruns.com
Clone URL: git://github.com/fiveruns/instrument.git
instrument / Rakefile
100644 14 lines (13 sloc) 0.465 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'echoe'
 
Echoe.new 'instrument' do |p|
  # Note: Update version by adding a line to CHANGELOG
  p.author = "FiveRuns Development Team"
  p.test_files = Dir['test/**/*_test.rb']
  p.email = 'dev@fiveruns.com'
  p.project = 'fiveruns'
  p.summary = "Provides a simple API for instrumenting Ruby method invocations."
  p.url = "http://github.com/fiveruns/instrumentation"
  p.dependencies = %w(activesupport)
  p.include_rakefile = true
end