require 'rubygems' require 'hoe' # ActiveRecord is very noisy on warnings, so we disable them without listening to zenspider Hoe::RUBY_FLAGS.replace ENV['RUBY_FLAGS'] || "-I#{%w(lib ext bin test).join(File::PATH_SEPARATOR)}" + (Hoe::RUBY_DEBUG ? " #{RUBY_DEBUG}" : '') Hoe.new('Homes', '0.1') do |p| p.name = "homes" p.author = "Julik" p.description = "Sharing the place" p.email = 'me@julik.nl' p.summary = "See for yourself" p.url = "http://julik.nl" p.extra_deps = ['activerecord', 'activesupport', 'camping'] end