public
Description: an re-implementation of rmmseg (Chinese word segmentation library for Ruby) in C++
Homepage: http://rmmseg-cpp.rubyforge.org
Clone URL: git://github.com/pluskid/rmmseg-cpp.git
rmmseg-cpp / Rakefile
100644 20 lines (13 sloc) 0.329 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- Ruby -*-
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'rmmseg'
 
task :default => 'spec:run'
 
PROJ.name = 'rmmseg-cpp'
PROJ.version = '0.2.7'
PROJ.authors = 'pluskid'
PROJ.email = 'pluskid@gmail.com'
PROJ.url = 'http://rmmseg-cpp.rubyforge.org'
PROJ.rubyforge.name = 'rmmseg-cpp'
 
PROJ.spec.opts << '--color'
 
# EOF