-
Notifications
You must be signed in to change notification settings - Fork 129
/
Rakefile
37 lines (30 loc) · 938 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# encoding: utf-8
require 'rubygems'
require 'bundler'
require 'rake'
require 'jeweler'
require 'rspec/core/rake_task'
require 'yard'
module TempFixForRakeLastComment
def last_comment
last_description
end
end
Rake::Application.send :include, TempFixForRakeLastComment
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "wombat"
gem.homepage = "http://felipecsl.github.com/wombat"
gem.license = "MIT"
gem.summary = %Q{Ruby DSL to scrape web pages}
gem.description = %Q{Generic Web crawler with a DSL that parses structured data from web pages}
gem.email = "felipe.lima@gmail.com"
gem.authors = ["Felipe Lima"]
gem.required_ruby_version = ">= 1.9"
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
RSpec::Core::RakeTask.new(:spec)
task :test => :spec
task :default => :spec
YARD::Rake::YardocTask.new