2011-07-17 19:48:49 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'rubygems'
|
|
|
|
require 'bundler'
|
|
|
|
begin
|
|
|
|
Bundler.setup(:default, :development)
|
|
|
|
rescue Bundler::BundlerError => e
|
|
|
|
$stderr.puts e.message
|
|
|
|
$stderr.puts "Run `bundle install` to install missing gems"
|
|
|
|
exit e.status_code
|
|
|
|
end
|
|
|
|
require 'rake'
|
|
|
|
|
|
|
|
require 'jeweler'
|
|
|
|
Jeweler::Tasks.new do |gem|
|
|
|
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
|
|
gem.name = "fb2"
|
|
|
|
gem.homepage = "http://github.com/magnolia-fan/fb2"
|
|
|
|
gem.license = "MIT"
|
2011-07-17 21:36:09 +00:00
|
|
|
gem.summary = %Q{FB2 util written in ruby}
|
|
|
|
gem.description = %Q{Parses FB2 (FictionBook 2) xml format into nice objects. Uses nokogiri.}
|
2011-07-17 19:48:49 +00:00
|
|
|
gem.email = "magnolia_fan@me.com"
|
2011-07-17 21:36:09 +00:00
|
|
|
gem.authors = ["Gregory Eremin"]
|
|
|
|
gem.files += Dir['lib/**/*.rb']
|
2011-07-17 19:48:49 +00:00
|
|
|
# dependencies defined in Gemfile
|
|
|
|
end
|
|
|
|
Jeweler::RubygemsDotOrgTasks.new
|
|
|
|
|
|
|
|
require 'rake/testtask'
|
|
|
|
Rake::TestTask.new(:test) do |test|
|
|
|
|
test.libs << 'lib' << 'test'
|
|
|
|
test.pattern = 'test/**/test_*.rb'
|
|
|
|
test.verbose = true
|
|
|
|
end
|
|
|
|
|
|
|
|
require 'rcov/rcovtask'
|
|
|
|
Rcov::RcovTask.new do |test|
|
|
|
|
test.libs << 'test'
|
|
|
|
test.pattern = 'test/**/test_*.rb'
|
|
|
|
test.verbose = true
|
|
|
|
test.rcov_opts << '--exclude "gems/*"'
|
|
|
|
end
|
|
|
|
|
|
|
|
task :default => :test
|
|
|
|
|
2011-07-17 21:36:09 +00:00
|
|
|
require 'rdoc/task'
|
|
|
|
RDoc::Task.new do |rdoc|
|
2011-07-17 19:48:49 +00:00
|
|
|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
|
|
|
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
|
|
rdoc.title = "fb2 #{version}"
|
|
|
|
rdoc.rdoc_files.include('README*')
|
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
end
|