Sha256: 0ff465ab95a76926a9cf1e84e40a092bb8dae09bf18a0698c6486336980d82db

Contents?: true

Size: 1.09 KB

Versions: 13

Compression:

Stored size: 1.09 KB

Contents

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

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('bdoc', Bdoc::VERSION) do |p|
  p.developer('Rich Manalang', 'rich.manalang@gmail.com')
  p.changes              = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.rubyforge_name       = p.name # TODO this is default value
  p.extra_deps         = [
    ['launchy','>= 0.3.3'],
    ['json','>= 1.1.3'],
  ]
  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

13 entries across 13 versions & 3 rubygems

Version Path
aptinio-bdoc-0.2.2.3 Rakefile
aptinio-bdoc-0.2.2.4 Rakefile
manalang-bdoc-0.1.2 Rakefile
manalang-bdoc-0.1.3 Rakefile
manalang-bdoc-0.1.4 Rakefile
manalang-bdoc-0.1.5 Rakefile
manalang-bdoc-0.1.7 Rakefile
manalang-bdoc-0.1.8 Rakefile
manalang-bdoc-0.1.9 Rakefile
manalang-bdoc-0.2.0 Rakefile
manalang-bdoc-0.2.1 Rakefile
manalang-bdoc-0.2.2 Rakefile
rogerdpack-bdoc-0.2.2 Rakefile