-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathRakefile
78 lines (64 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
require 'rake'
ENV['RUBY_FLAGS'] = '-W1'
Dir['tasks/**/*.rake'].each { |t| load t }
task :default => [:test, :spec]
task :all => [:libxml, :nokogiri, 'spec:active_record']
task :libxml => ['test:libxml', 'spec:libxml']
task :nokogiri => ['test:nokogiri', 'spec:nokogiri']
require 'rdoc/task'
RDoc::Task.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "roxml #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
require 'rspec/core/rake_task'
desc "Run specs"
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.ruby_opts = '-Ilib -Ispec -Iexamples'
spec.exclude_pattern = "spec/examples/active_record*_spec.rb"
end
namespace :spec do
[:libxml, :nokogiri].each do |parser|
desc "Spec ROXML under the #{parser} parser"
RSpec::Core::RakeTask.new(parser) do |spec|
spec.ruby_opts = '-Ilib -Ispec -Iexamples'
spec.exclude_pattern = "spec/examples/active_record*_spec.rb"
# spec.spec_files = ["spec/support/#{parser}.rb"] + FileList['spec/**/*_spec.rb']
end
end
desc "Spec ROXML under ActiveRecord"
RSpec::Core::RakeTask.new(:active_record) do |spec|
spec.pattern = "spec/examples/active_record*_spec.rb"
end
end
desc "Run specs with rcov"
RSpec::Core::RakeTask.new(:rcov) do |spec|
spec.rcov = true
spec.ruby_opts = '-Ilib -Ispec -Iexamples'
# spec.spec_files = FileList['spec/**/*_spec.rb']
end
require 'rake/testtask'
desc "Test ROXML using the default parser selection behavior"
Rake::TestTask.new do |t|
t.test_files = FileList['test/**/*_test.rb']
end
namespace :test do
desc "Test ROXML under the Nokogiri parser"
task :nokogiri do
$LOAD_PATH << '.'
require 'spec/support/nokogiri'
Rake::Task["test"].invoke
end
desc "Test ROXML under the LibXML parser"
task :libxml do
$LOAD_PATH << '.'
require 'spec/support/libxml'
Rake::Task["test"].invoke
end
desc "Runs tests under RCOV"
task :rcov do
system "rcov -T --no-html -x '^/' #{FileList['test/unit/*_test.rb']}"
end
end