forked from pius/rdf-mongo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRakefile
38 lines (31 loc) · 980 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
36
37
38
require 'rubygems'
require 'yard'
require 'rspec/core/rake_task'
namespace :gem do
desc "Build the rdf-mongo-#{File.read('VERSION').chomp}.gem file"
task :build do
sh "gem build rdf-mongo.gemspec && mv rdf-mongo-#{File.read('VERSION').chomp}.gem pkg/"
end
desc "Release the rdf-mongo-#{File.read('VERSION').chomp}.gem file"
task :release do
sh "gem push pkg/rdf-mongo-#{File.read('VERSION').chomp}.gem"
end
end
desc 'Run specifications'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.rspec_opts = %w(--options spec/spec.opts) if File.exists?('spec/spec.opts')
end
desc "Run specs through RCov"
RSpec::Core::RakeTask.new("spec:rcov") do |spec|
spec.rcov = true
spec.rcov_opts = %q[--exclude "spec"]
end
namespace :doc do
YARD::Rake::YardocTask.new
desc "Generate HTML report specs"
RSpec::Core::RakeTask.new("spec") do |spec|
spec.rspec_opts = ["--format", "html", "-o", "doc/spec.html"]
end
end
task default: :spec
task specs: :spec