forked from twitter-archive/gizzmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
53 lines (46 loc) · 1.41 KB
/
Rakefile
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
ROOT_DIR = File.expand_path(File.dirname(__FILE__))
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "gizzmo"
gem.summary = %Q{Gizzmo is a command-line client for managing gizzard clusters.}
gem.description = %Q{Gizzmo is a command-line client for managing gizzard clusters.}
gem.email = "[email protected]"
gem.homepage = "http://github.com/twitter/gizzmo"
gem.authors = ["Kyle Maxwell"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
begin
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |t|
spec_opts = File.expand_path('test/spec.opts', ROOT_DIR)
if File.exist? spec_opts
t.spec_opts = ['--options', "\"#{spec_opts}\""]
end
t.spec_files = FileList['test/**/*_spec.rb']
end
rescue LoadError
$stderr.puts "RSpec required to run tests."
end
task :test do
puts
puts "=" * 79
puts "You might want to read the README before running tests."
puts "=" * 79
sleep 2
exec File.join(File.dirname(__FILE__), "test", "test.sh")
end
task :default => :spec
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "gizzmo #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end