forked from georgi/git_store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
35 lines (30 loc) · 771 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 'rake'
require "rake/rdoctask"
begin
require 'spec/rake/spectask'
rescue LoadError
puts <<-EOS
To use rspec for testing you must install the rspec gem:
gem install rspec
EOS
exit(0)
end
desc "Run all specs"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts = ['-cfs']
t.spec_files = FileList['test/**/*_spec.rb']
end
desc "Print SpecDocs"
Spec::Rake::SpecTask.new(:doc) do |t|
t.spec_opts = ["--format", "specdoc"]
t.spec_files = FileList['test/*_spec.rb']
end
desc "Generate the RDoc"
Rake::RDocTask.new do |rdoc|
files = ["README.md", "LICENSE", "lib/**/*.rb"]
rdoc.rdoc_files.add(files)
rdoc.main = "README.md"
rdoc.title = "Git Store - using Git as versioned data store in Ruby"
end
desc "Run the rspec"
task :default => :spec