Sha256: 3e68ea58efc4bf3a780fa3252eee912e417a30bef6f1a5344e82d24a60cc33e0

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

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

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('bowline', Bowline::VERSION) do |p|
  p.developer('Alex MacCaw', 'info@eribium.org')
  p.changes              = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.rubyforge_name       = 'maccman'
  p.extra_deps << ['templater', '>=0.3.2']
  p.extra_deps << ['activesupport', '>=2.3.2']
  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

4 entries across 4 versions & 2 rubygems

Version Path
maccman-bowline-0.1.3 Rakefile
maccman-bowline-0.1.4 Rakefile
maccman-bowline-0.1.6 Rakefile
bowline-0.1.6 Rakefile