public
Description:
Homepage: http://rubyforge.org/projects/starling
Clone URL: git://github.com/defunkt/starling.git
jacobat (author)
Fri Oct 17 02:00:41 -0700 2008
commit  68aa68ae3db76efdcc45661148c0440724686fff
tree    688f80ef5688c3c392f6500d9aacac7fcb443224
parent  7fef96db63b925b80f6cf939536ac0d29305f427
starling / Rakefile
100644 23 lines (18 sloc) 0.467 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rubygems'
require 'rake/rdoctask'
require 'spec/rake/spectask'
 
task :default => :spec
 
task :install do
  sh %{gem build starling.gemspec}
  sh %{sudo gem install starling-*.gem}
end
 
Spec::Rake::SpecTask.new do |t|
  t.ruby_opts = ['-rtest/unit']
  t.spec_files = FileList['spec/*_spec.rb']
  t.fail_on_error = true
end
  
Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
  rd.rdoc_dir = 'doc'
end