-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathRakefile
More file actions
19 lines (15 loc) · 328 Bytes
/
Copy pathRakefile
File metadata and controls
19 lines (15 loc) · 328 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
begin
require 'bundler/setup'
rescue LoadError => e
warn e.message
warn "Run `gem install bundler` to install Bundler"
exit -1
end
require 'rubygems/tasks'
Gem::Tasks.new
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
task :test => :spec
task :default => :spec
require 'yard'
YARD::Rake::YardocTask.new