Sha256: 0822c905fd12dc0fed5a09fea9a441e839af781416afdd1a64affdd3d5645452

Contents?: true

Size: 1.75 KB

Versions: 8

Compression:

Stored size: 1.75 KB

Contents

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 = "bookscan"
  gem.homepage = "http://github.com/tumf/bookscan"
  gem.license = "MIT"
  gem.summary = %Q{BookScan Scraper}
  gem.description = %Q{This is a scraper of Bookscan (http://www.bookscan.co.jp) Service.This is *NOT* a official software of Bookscan.}
  gem.email = "y.takahara@gmail.com"
  gem.authors = ["Yoshihiro TAKAHARA"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  gem.add_runtime_dependency 'mutter'
  gem.add_runtime_dependency 'keystorage', '> 0.1'
  gem.add_runtime_dependency 'mechanize', '>= 1.0.0'
  gem.add_runtime_dependency 'highline', '> 1.6'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
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
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "bookscan #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bookscan-0.5.0 Rakefile
bookscan-0.4.3 Rakefile
bookscan-0.4.1 Rakefile
bookscan-0.4.0 Rakefile
bookscan-0.3.0 Rakefile
bookscan-0.2.2 Rakefile
bookscan-0.2.1 Rakefile
bookscan-0.2.0 Rakefile