public
Description: A very thin wrapper around CouchRest, for use with CouchDB and Ruby on Rails.
Homepage: http://nubyonrails.com
Clone URL: git://github.com/topfunky/basic_model.git
commit  596701cfbe856e012700e9d303b347c08fda1df5
tree    d585dafcf135a06a7ceacd106610c4bd9b9949ab
parent  435f72383a5610c8c4a4a3cd46008db3397300a6
basic_model / Rakefile
100644 13 lines (9 sloc) 0.293 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/basic_model.rb'
 
Hoe.new('BasicModel', BasicModel::VERSION) do |p|
  # p.rubyforge_name = 'BasicModelx' # if different than lowercase project name
  p.developer('Geoffrey Grosenbach', 'boss@topfunky.com')
end
 
# vim: syntax=Ruby