require 'bundler' Bundler::GemHelper.install_tasks require 'rdoc/task' desc 'Generate the rdoc' Rake::RDocTask.new do |rdoc| rdoc.rdoc_files.add %w( README.md lib/**/*.rb ) rdoc.main = 'README.md' rdoc.title = 'BigBro: A Google Analytics plugin for Rails' end desc 'Will someone help write tests?' task :default do puts puts 'Can you help in writing tests? Please do :-)' puts end