forked from cloudhead/toto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
35 lines (32 loc) · 932 Bytes
/
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
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "toto"
gem.summary = %Q{the tiniest blog-engine in Oz}
gem.description = %Q{the tiniest blog-engine in Oz.}
gem.email = "[email protected]"
gem.homepage = "http://github.com/cloudhead/toto"
gem.authors = ["cloudhead"]
gem.add_development_dependency "riot"
gem.add_dependency "builder"
gem.add_dependency "rack"
if RUBY_PLATFORM =~ /win32/
gem.add_dependency "maruku"
else
gem.add_dependency "rdiscount"
end
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/*_test.rb'
test.verbose = true
end
task :test => :check_dependencies
task :default => :test