Sha256: 81945450b00902e483b9bcfb6b915e11f4f1fd13516ec980424a2c62d27000c5

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

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

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('annotate', Annotate::VERSION) do |p|
  p.developer('Marcos Piccinini', 'x@nofxx.com')
  p.changes              = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.rubyforge_name       = p.name 
  p.url                  = "http://github.com/nofxx/annotate"
  p.summary              = "Annotates Rails Models and Routes"
  p.description          = "Annotates Rails Models and Routes"
  
  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

6 entries across 6 versions & 2 rubygems

Version Path
IPGlider-annotate-2.2.6 Rakefile
IPGlider-annotate-2.2.7 Rakefile
nofxx-annotate-2.1.1 Rakefile
nofxx-annotate-2.2.2 Rakefile
nofxx-annotate-2.2.3 Rakefile
nofxx-annotate-2.2.5 Rakefile