Sha256: ce6792cecbc82cfa053a41858c6553cd9cbd8f9df472eb20fe5ec2fa51544939

Contents?: true

Size: 807 Bytes

Versions: 10

Compression:

Stored size: 807 Bytes

Contents

require 'rubygems'
gem 'hoe', '>= 2.1.0'
require 'hoe'
require 'fileutils'
require './lib/tidtools'

Hoe.plugin :newgem
# Hoe.plugin :website
# Hoe.plugin :cucumberfeatures

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.spec 'tidtools' do
  self.developer 'ongaeshi', 'ongaeshi@example.com'
  self.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
  self.rubyforge_name       = self.name # TODO this is default value
  self.extra_deps         = [['hpricot','>= 0.8.2']]
end

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

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tidtools-0.2.0 Rakefile
tidtools-0.1.0 Rakefile
tidtools-0.0.9 Rakefile
tidtools-0.0.8 Rakefile
tidtools-0.0.7 Rakefile
tidtools-0.0.6 Rakefile
tidtools-0.0.5 Rakefile
tidtools-0.0.4 Rakefile
tidtools-0.0.3 Rakefile
tidtools-0.0.2 Rakefile