-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
28 lines (25 loc) · 1008 Bytes
/
Copy pathRakefile
File metadata and controls
28 lines (25 loc) · 1008 Bytes
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'
# We want developers to be able to include rake tasks even without echoe gem available
require 'echoe' rescue nil
if Object.const_defined? :Echoe
Echoe.new('documentalist', '0.1.4') do |p|
p.description = "The smooth document management experience, usable as a Rails gem plugin or standalone in any ruby application"
p.url = "http://github.com/davout/documentalist"
p.author = "David FRANCOIS"
p.email = "david.francois@webflows.fr"
p.ignore_pattern = ["tmp/*", "script/*"]
p.test_pattern = "test/**/*.rb"
p.development_dependencies = ['flexmock >=0.8.6']
p.runtime_dependencies = ['zip >=2.0.2', 'SystemTimer >=1.2']
end
end
namespace :documentalist do
namespace :backends do
desc "Checks that the required dependencies are met for the different backends"
task :checks do
require File.join(File.dirname(__FILE__), "init")
Documentalist.check_dependencies
end
end
end