forked from postmodern/combinatorics.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
35 lines (29 loc) · 644 Bytes
/
Copy pathRakefile
File metadata and controls
35 lines (29 loc) · 644 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
require 'rubygems'
require 'rake'
begin
gem 'ore-tasks', '~> 0.3.0'
require 'ore/tasks'
Ore::Tasks.new
rescue LoadError => e
STDERR.puts e.message
STDERR.puts "Run `gem install ore-tasks` to install 'ore/tasks'."
end
begin
gem 'rspec', '~> 2.2.0'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
rescue LoadError => e
task :spec do
abort "Please run `gem install rspec` to install RSpec."
end
end
task :default => :spec
begin
gem 'yard', '~> 0.6.0'
require 'yard'
YARD::Rake::YardocTask.new
rescue LoadError => e
task :yard do
abort "Please run `gem install yard` to install YARD."
end
end