-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRakefile
More file actions
39 lines (31 loc) · 790 Bytes
/
Copy pathRakefile
File metadata and controls
39 lines (31 loc) · 790 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
29
30
31
32
33
34
35
36
37
38
39
require 'rubygems'
begin
require 'bundler'
rescue LoadError => e
warn e.message
warn "Run `gem install bundler` to install Bundler."
exit e.status_code
end
begin
Bundler.setup(:development)
rescue Bundler::BundlerError => e
warn e.message
warn "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'rubygems/tasks'
Gem::Tasks.new(sign: {checksum: true, pgp: true})
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
task :default => :spec
task :test => :spec
namespace :spec do
RSpec::Core::RakeTask.new(:integration) do |t|
t.pattern = %w[spec/program_spec.rb spec/shellcode_spec.rb]
t.rspec_opts = '--tag integration'
end
end
task :test => 'spec:integration'
require 'yard'
YARD::Rake::YardocTask.new