Sha256: 272e971784c84c04c82c5de3566520d01e118e79cacdc9438f90d07712db4e2c

Contents?: true

Size: 815 Bytes

Versions: 8

Compression:

Stored size: 815 Bytes

Contents

$:.unshift(File.join(File.dirname(__FILE__), 'lib'))

require 'taglob'
require 'rubygems'
require 'hoe'
require 'spec/rake/spectask'

Hoe.new('Taglob', Taglob::VERSION) do |p|
  p.name = "taglob"
  p.author = "Adam Anderson"
  p.description = "Tagging for Ruby files"
  p.email = 'adamandersonis@gmail.com'
  p.summary = "Dir.taglob selects tagged Ruby files"
  p.url = "http://taglob.rubyforge.org"
  p.remote_rdoc_dir = '' # Release to root
end

desc "Run all examples"
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_files = FileList['spec/*.rb']
end

desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('rcov') do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.libs << File.join(File.dirname(__FILE__), 'lib')
  t.rcov = true
  t.rcov_dir = 'artifacts'
  t.rcov_opts = ['--exclude', 'spec']
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
scudco-taglob-1.0.0 Rakefile
scudco-taglob-1.0.1 Rakefile
scudco-taglob-1.0.2 Rakefile
scudco-taglob-1.1.0 Rakefile
scudco-taglob-1.1.1 Rakefile
taglob-1.0.0 Rakefile
taglob-1.1.1 Rakefile
taglob-1.0.2 Rakefile