Sha256: 8acd5eec8b3784d60dde8942fdd99abc45a3298556591a8cae38d780ba369f06
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:development, :doc) 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' require './lib/spidr/version.rb' Jeweler::Tasks.new do |gem| gem.name = 'spidr' gem.version = Spidr::VERSION gem.license = 'MIT' gem.summary = %Q{A versatile Ruby web spidering library} gem.description = %Q{Spidr is a versatile Ruby web spidering library that can spider a site, multiple domains, certain links or infinitely. Spidr is designed to be fast and easy to use.} gem.email = 'postmodern.mod3@gmail.com' gem.homepage = 'http://github.com/postmodern/spidr' gem.authors = ['Postmodern'] gem.has_rdoc = 'yard' end require 'spec/rake/spectask' Spec::Rake::SpecTask.new(:spec) do |spec| spec.libs += ['lib', 'spec'] spec.spec_files = FileList['spec/**/*_spec.rb'] spec.spec_opts = ['--options', '.specopts'] end task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spidr-0.2.6 | Rakefile |
spidr-0.2.5 | Rakefile |