public
Description: Google Data APIs Ruby Library
Homepage: http://code.google.com/apis/gdata
Clone URL: git://github.com/ctran/ruby-gdata.git
Search Repo:
ruby-gdata / Rakefile
100644 14 lines (12 sloc) 0.303 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'hoe'
require 'spec/rake/spectask'
require './lib/gdata.rb'
 
Hoe.new('gdata', GData::VERSION::STRING) do |p|
  p.rubyforge_name = 'ruby_gdata'
  p.developer('Cuong Tran', 'ctran@pragmaquest.com')
end
 
desc "Run all specs"
Spec::Rake::SpecTask.new do |t|
  t.warning = true
end