Sha256: 438bf2589fc3757061d17e46cccbd59ba70f36c38807b45dc5bcd2172bc31aa8

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/bb-ruby'

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('bb-ruby', BBRuby::VERSION) do |p|
  p.developer('Craig P Jolicoeur', 'cpjolicoeur@gmail.com')
  p.changes              = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
  p.rubyforge_name       = p.name # TODO this is default value
  p.extra_dev_deps = [
    ['newgem', ">= #{::Newgem::VERSION}"]
  ]
  
  p.clean_globs |= %w[**/.DS_Store tmp *.log]
  path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
  p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
  p.rsync_args = '-av --delete --ignore-errors'
end

require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }

# TODO - want other tests/tasks run by default? Add them to the list
# task :default => [:spec, :features]

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bb-ruby-0.9.3 Rakefile
bb-ruby-0.8.2 Rakefile
bb-ruby-0.8.3 Rakefile
bb-ruby-0.8.4 Rakefile
bb-ruby-0.8.5 Rakefile
bb-ruby-0.9 Rakefile
bb-ruby-0.9.2 Rakefile