GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Packed binary data manipulation library for Ruby
Clone URL: git://github.com/TwP/bitwise.git
bitwise / Rakefile
100644 24 lines (16 sloc) 0.459 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
# $Id$
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'bitwise'
 
task :default => 'spec:specdoc'
 
PROJ.name = 'bitwise'
PROJ.authors = 'Tim Pease'
PROJ.email = 'tim.pease@gmail.com'
PROJ.url = 'http://bitwise.rubyforge.org'
PROJ.rubyforge.name = 'bitwise'
PROJ.version = BitWise::VERSION
PROJ.ruby_opts = %w[-W0]
 
PROJ.spec.opts << '--color'
 
# make sure the manifest is up to date before building the gem
task 'gem:package' => 'manifest:assert'
 
# EOF