forked from princelab/msplinter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
34 lines (27 loc) · 704 Bytes
/
Rakefile
File metadata and controls
34 lines (27 loc) · 704 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
require "bundler/gem_tasks"
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
task :default => :spec
task :console do |task|
cmd = [ 'irb', "-r './lib/msplinter.rb'" ]
run *cmd
end
task :pry do |task|
cmd = [ 'pry', "-r './lib/msplinter.rb'" ]
run *cmd
end
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "rubabel #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
## Convenience method to kick off a command
def run *cmd
sh(cmd.join(" "))
end