sishen / hbase-ruby

ruby client for Hadoop HBase

This URL has Read+Write access

Ye Dingding (author)
Sun Mar 08 11:27:50 -0700 2009
hbase-ruby / Rakefile
100644 14 lines (11 sloc) 0.452 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'hoe'
 
Hoe.new('sishen-hbase-ruby', '0.5.0') do |p|
  p.rubyforge_name = 'sishen-hbase-ruby'
  p.author = 'Ye Dingding'
  p.email = 'yedingding@gmail.com'
  p.url = 'http://sishen.lifegoo.com'
  p.summary = 'a pure ruby client for hbase using REST interface'
  p.description = 'hbase-ruby is a pure ruby client for hbase and enable the ruby app enjoy the power of HBase'
end
 
Dir['tasks/**/*.rake'].each { |rake| load rake }