require 'rubygems' require 'rake' require 'echoe' # from here: http://buzaz.com/index.php/2010/01/03/how-to-build-a-ruby-gem/ Echoe.new('ric', '0.9.1') do |p| p.description = "My firstgem with various utilities (colors and tests now). My name is Riccardo, hence 'ric' (ok I admit it, this was just ot prove Im able to build a sentence with hence!)" p.url = "http://github.com/palladius/riclib" p.author = "Riccardo Carlesso" p.email = "['p','ll','diusbonton].join('a') @ gmail.com" p.ignore_pattern = ["tmp/*", "script/*", "images/*/*/*jpg", "images/*/*jpg", "*.jpg" , 'images', "private/*"] p.development_dependencies = [] end