public
Description: Converts numbers, currency and other units to Polish, English, German
Homepage: http://trix.pl
Clone URL: git://github.com/tomaszmazur/verbal.git
Click here to lend your support to: verbal and make a donation at www.pledgie.com !
verbal / Rakefile
100644 15 lines (12 sloc) 0.299 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'hoe'
require './lib/verbal.rb'
require 'spec/rake/spectask'
 
Hoe.new('verbal', Verbal::VERSION) do |p|
  p.rubyforge_name = 'verbal'
  p.developer('Tomasz Mazur', 'tomek@trix.pl')
end
 
Spec::Rake::SpecTask.new(:spec) do |t|
  t.verbose = false
end
 
task :default => :spec