Sha256: bcfac7b49cb1f1be282292da156bf05877b6990c85a95b2ec7edf622fd50e480

Contents?: true

Size: 693 Bytes

Versions: 5

Compression:

Stored size: 693 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

# require 'bundler'
# Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:test)

# Hoe.plugin :compiler
# Hoe.plugin :gem_prelude_sucks
# Hoe.plugin :inline
# Hoe.plugin :racc
# Hoe.plugin :rubyforge

Hoe.spec 'rawler' do
  # HEY! If you fill these out in ~/.hoe_template/Rakefile.erb then
  # you'll never have to touch them again!
  # (delete this comment too, of course)

  developer('Oscar Del Ben', 'info@oscardelben.com')

  self.rubyforge_name = 'oscardelben'
  
  extra_deps << ['nokogiri']
end

desc 'Console'
task :console do
  exec 'irb -rubygems -I lib -r rawler.rb'
end

# vim: syntax=ruby

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rawler-0.1.0 Rakefile
rawler-0.0.9 Rakefile
rawler-0.0.8 Rakefile
rawler-0.0.7 Rakefile
rawler-0.0.6 Rakefile