public
Description: Provides a simple way to add rating functionality to your application.
Homepage: http://rdoc.info/projects/edgarjs/ajaxful-rating
Clone URL: git://github.com/edgarjs/ajaxful-rating.git
Click here to lend your support to: ajaxful-rating and make a donation at www.pledgie.com !
edgarjs (author)
Wed Sep 09 21:21:01 -0700 2009
commit  a351e1dd6bef2af7b10c16e6648c9028b77bbf34
tree    33f23ab8c5711728b0d8879ab2eeb3aac70c68ef
parent  66e154a56236128e8c2219768758b020fcbc1652
ajaxful-rating / Rakefile
100644 15 lines (12 sloc) 0.483 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('ajaxful_rating', '2.1.3') do |p|
  p.description = "Provides a simple way to add rating functionality to your application."
  p.url = "http://github.com/edgarjs/ajaxful-rating"
  p.author = "Edgar J. Suarez"
  p.email = "e@dgar.org"
  p.ignore_pattern = ["tmp/*", "script/*"]
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }