-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrakefile.rb
28 lines (22 loc) · 883 Bytes
/
rakefile.rb
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
require 'rubygems'
require 'rake/gempackagetask'
namespace :jeweler do
require 'jeweler'
Jeweler::Tasks.new do |gs|
gs.name = "deris"
gs.version = "0.1.5"
gs.author = "Garry Shutler"
gs.email = "[email protected]"
gs.homepage = "http://github.com/gshutler/deris"
gs.summary = "Simple documentation creation engine based on HAML"
gs.description = "Simple documentation creation engine based on HAML"
gs.files = FileList['lib/*.rb']
gs.test_files = FileList['tests/**/*']
gs.require_path = "lib"
gs.add_dependency("haml", ">=2.2.0")
gs.add_development_dependency("rspec", ">=2.0.0.beta.9")
end
end
# load all rake files in the project
rakefile_mask = File.join(File.expand_path(File.dirname(__FILE__)), '**', '*.rake')
Dir.glob(rakefile_mask).each {|f| load f }