Rakefile in restfulie-0.2 vs Rakefile in restfulie-0.3

- old
+ new

@@ -3,12 +3,12 @@ require 'rake' require 'rake/gempackagetask' require 'spec/rake/spectask' GEM = "restfulie" -GEM_VERSION = "0.2" -SUMMARY = "This is a small cute plugin to show how to implement hypermedia based services in a easy way using rails." +GEM_VERSION = "0.3" +SUMMARY = "Hypermedia aware resource based library in ruby (client side) and ruby on rails (server side)." AUTHOR = "Guilherme Silveira, Caue Guerra" EMAIL = "guilherme.silveira@caelum.com.br" HOMEPAGE = "http://github.com/caelum/restfulie" spec = Gem::Specification.new do |s| @@ -47,5 +47,8 @@ end end desc "Builds the project" task :build => :spec + +desc "Default build will run specs" +task :default => :spec