# encoding: utf-8 begin require 'bones' rescue LoadError abort '### Please install the "bones" gem ###' end ensure_in_path 'lib' require '<%= args[:project] %>/version' Bones{ name '<%= args[:project] %>' url 'http://github.com/<%= args[:author] %>/<%= args[:project] %>' version <%= args[:project].capitalize %>::VERSION # gem.executables ['bin/<%= args[:project] %>'] # depend_on 'source-tools', :development => true, :version => '>=0.6.0' # rubyforge.name '<%= args[:project] %>' authors '<%= args[:author] %>' email '<%= args[:author] %>@<%= args[:author] %>.org' history_file 'CHANGES' readme_file 'README' ignore_file '.gitignore' rdoc.include ['\w+'] } CLEAN.include Dir['**/*.rbc'] task :default do Rake.application.options.show_task_pattern = /./ Rake.application.display_tasks_and_comments end