public
Rubygem
Description: Suppresses the noise in your Test::Unit backtraces
Homepage: http://www.thoughtbot.com/projects/quietbacktrace
Clone URL: git://github.com/thoughtbot/quietbacktrace.git
quietbacktrace / Rakefile
100644 63 lines (51 sloc) 1.837 kb
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
require 'date'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the quietbacktrace gem.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the quietbacktrace gem.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Quiet Backtrace'
  rdoc.options << '--line-numbers' << '--inline-source' << "--main" << "README.markdown"
  rdoc.rdoc_files.include('README.markdown')
  rdoc.rdoc_files.include('lib/**/*.rb')
end
 
spec = Gem::Specification.new do |s|
  s.name = %q{quietbacktrace}
  s.version = "1.1"
  s.summary = %q{Quiet Backtrace suppresses the noise in your Test::Unit backtrace.}
  s.description = %q{Quiet Backtrace suppresses the noise in your Test::Unit backtrace.def backtrace.
It also provides hooks for you to add additional silencers and filters.}
 
  s.files = FileList['[A-Z]*', 'lib/**/*.rb', 'test/**/*.rb']
  s.require_path = 'lib'
  s.test_files = Dir[*['test/**/*_test.rb']]
 
  s.has_rdoc = true
  s.extra_rdoc_files = ["README.markdown"]
  s.rdoc_options = ['--line-numbers', '--inline-source', "--main", "README.markdown"]
 
  s.authors = ["Dan Croak", "James Golick"]
  s.email = %q{dcroak@thoughtbot.com}
 
  s.platform = Gem::Platform::RUBY
  s.add_dependency(%q<activesupport>, [">= 1.0"])
end
 
Rake::GemPackageTask.new spec do |pkg|
  pkg.need_tar = true
  pkg.need_zip = true
end
 
desc "Clean files generated by rake tasks"
task :clobber => [:clobber_rdoc, :clobber_package]
 
desc "Generate a gemspec file"
task :gemspec do
  File.open("#{spec.name}.gemspec", 'w') do |f|
    f.write spec.to_ruby
  end
end