public
Description: A gem that provides a ruby wrapper around the tickspot.com api
Homepage: http://tickspot.com/api/
Clone URL: git://github.com/bricooke/tickspot-ruby.git
bricooke (author)
Sat May 24 11:20:01 -0700 2008
commit  6dbe50e46c7210ba034834e7cce97e720490f392
tree    b6284d5b35a50a370aacf8a5f079b77c80942f0c
parent  574303b52cd4afd34c689c1cf1b5719bb843f761
tickspot-ruby / Rakefile
100644 21 lines (15 sloc) 0.478 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/tickspot.rb'
require 'spec/rake/spectask'
 
Hoe.new('tickspot-ruby', Tickspot::VERSION) do |p|
  p.rubyforge_name = 'tickspot-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