public
Description: Translate from American to British and British to American (for amusement only)
Homepage:
Clone URL: git://github.com/fearoffish/britify.git
bleything (author)
Thu Aug 21 13:52:26 -0700 2008
commit  7570611a762c72b00cac1c52387fc9c3d8d864ef
tree    87a17bedd5df06eea926718da23560358a7a82a1
parent  e2171a1e3e20af60fbd23734377d6810ff527cec
britify / Rakefile
100644 25 lines (18 sloc) 0.71 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'britify'
 
task :default => 'spec:run'
 
PROJ.name = 'britify'
PROJ.version = '0.0.1'
PROJ.authors = 'Jamie van Dyke'
PROJ.email = 'jamie@parfa.it'
PROJ.url = 'http://blog.fearoffish.com/'
PROJ.homepage = 'http://github.com/fearoffish/britify'
PROJ.rubyforge.name = 'britify'
PROJ.summary = 'British <-> American Translator'
PROJ.description = 'Britify is an amusement project, for translating the differences between British and American slangs.'
 
PROJ.spec.opts << '--color'
 
# EOF