Sha256: 68006336b85312d5d5124a1b746c0ef98cc8dd77c70eb0bc810ab0316c0e5ca7

Contents?: true

Size: 804 Bytes

Versions: 1

Compression:

Stored size: 804 Bytes

Contents

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require(File.join(File.dirname(__FILE__), 'config', 'boot'))

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

require 'tasks/rails'

require 'hoe'

GEM_VERSION = ENV['VERSION'] = '0.1.1'

Hoe.new("backlog", GEM_VERSION) do |p|
  p.rubyforge_name = "backlog"
  p.description = p.paragraphs_of('README.txt', 0..-1).join("\n\n")
  p.remote_rdoc_dir = '' # Release to root
  p.changes = p.paragraphs_of('History.txt', 0..-1).join("\n\n")
  p.rdoc_pattern = /^(app\/(controllers|helpers|models)|lib|bin)|txt$/
  p.spec_extras = {
    :files => Dir['**/*'].reject{|file_name| file_name =~ /^(log|pkg|tmp)/}
  }
  p.need_zip = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
backlog-0.1.1 Rakefile