# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. load 'tasks/setup.rb' ensure_in_path 'lib' require 'block_transfer' task :default => 'spec:run' PROJ.name = 'block_transfer' PROJ.authors = 'FIXME (who is writing this software)' PROJ.email = 'FIXME (your e-mail)' PROJ.url = 'FIXME (project homepage)' PROJ.rubyforge_name = 'block_transfer' PROJ.spec_opts << '--color' # EOF