-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRakefile
48 lines (40 loc) · 1.29 KB
/
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
39
40
41
42
43
44
45
46
47
48
require 'rubygems'
require 'yard'
require 'rspec/core/rake_task'
namespace :gem do
desc "Build the rdf-microdata-#{File.read('VERSION').chomp}.gem file"
task :build do
sh "gem build rdf-microdata.gemspec && mv rdf-microdata-#{File.read('VERSION').chomp}.gem pkg/"
end
desc "Release the rdf-microdata-#{File.read('VERSION').chomp}.gem file"
task :release do
sh "gem push pkg/rdf-microdata-#{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
desc "Generate etc/doap.{nt,ttl} from etc/doap.html."
task :doap do
require 'rdf/microdata'
require 'rdf/turtle'
require 'rdf/ntriples'
g = RDF::Graph.load("etc/doap.html")
RDF::NTriples::Writer.open("etc/doap.nt") {|w| w <<g }
RDF::Turtle::Writer.open("etc/doap.ttl", standard_prefixes: true) {|w| w <<g }
end