From c7867d0c6e82afc29d35403a663f2dd95b809339 Mon Sep 17 00:00:00 2001 From: Logan Lowell <fractaloop@thefrontside.net> Date: Wed, 15 Jun 2011 15:55:18 -0500 Subject: [PATCH] Default task is to build a binary gem --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 6b52516..4bf2e49 100644 --- a/Rakefile +++ b/Rakefile @@ -70,4 +70,6 @@ task "binary" => "compile" do gemspec.files << "lib/libv8/build/v8/libv8preparser.a" FileUtils.mkdir_p 'pkg' FileUtils.mv(Gem::Builder.new(gemspec).build, 'pkg') -end \ No newline at end of file +end + +task :default => :binary \ No newline at end of file