forked from noahd1/oink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
30 lines (26 loc) · 908 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
28
29
30
require "rubygems/package_task"
require "rake/clean"
require "rspec/core/rake_task"
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "oink"
s.version = "0.9.3"
s.author = "Noah Davis"
s.email = "noahd1" + "@" + "yahoo.com"
s.homepage = "http://github.com/noahd1/oink"
s.summary = "Log parser to identify actions which significantly increase VM heap size"
s.description = s.summary
s.executables = "oink"
s.files = %w[History.txt MIT-LICENSE README.rdoc Rakefile] + Dir["bin/*"] + Dir["lib/**/*"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
RSpec::Core::RakeTask.new do |t|
t.rspec_opts == ["--color"]
end
desc "Run the specs"
task :default => ["spec"]
CLEAN.include ["pkg", "*.gem", "doc", "ri", "coverage"]