public
Description: Ruby wrapper around the Harvest API (http://www.getharvest.com/api)
Homepage:
Clone URL: git://github.com/bricooke/harvest-ruby.git
harvest-ruby / Rakefile
100644 23 lines (15 sloc) 0.476 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/harvest.rb'
require 'spec/rake/spectask'
 
 
Hoe.new('harvest-ruby', Harvest::VERSION) do |p|
  p.rubyforge_name = 'harvest-ruby' # if different than lowercase project name
  p.developer('Brian Cooke', 'bcooke@roobasoft.com')
end
 
 
desc "Run specifications"
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_opts = ["--format", "specdoc", "--colour"]
  t.spec_files = './spec/**/*_spec.rb'
end
 
 
# vim: syntax=Ruby