public
Description: Lint for Ruby. Moved to http://wiki.github.com/kevinclark/nitpick/
Homepage: http://github.com/kevinclark/dust/wikis
Clone URL: git://github.com/kevinclark/dust.git
Click here to lend your support to: dust and make a donation at www.pledgie.com !
dust / Rakefile
100644 41 lines (35 sloc) 1.14 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
require 'rake'
require 'spec/rake/spectask'
 
task :default => :spec
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "dust"
    gem.summary = %Q{TODO}
    gem.email = "kevin.clark@gmail.com"
    gem.homepage = "http://github.com/kevinclark/dust"
    gem.authors = ["Kevin Clark"]
    gem.add_dependency('trollop')
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
 
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'dust'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end
 
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.spec_files = FileList['spec/**/*_spec.rb']
  spec.spec_opts = ["--format", "progress", "--color"]
end
 
Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end