-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rakefile
55 lines (49 loc) · 1.48 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
# --------------------------------------------------
# Tests
# --------------------------------------------------
task(:default => "test:all")
namespace(:test) do
desc "Run all tests"
task(:all) do
tests = Dir['test/**/test_*.rb'] - ['test/test_helper.rb']
cmd = "ruby -rubygems -I.:lib -e'%w( #{tests.join(' ')} ).each {|file| require file }'"
puts(cmd) if ENV['VERBOSE']
exit system(cmd)
end
desc "Run all tests on multiple ruby versions (requires rvm)"
task(:portability) do
versions = %w( 1.8.6 1.8.7 1.9 1.9.2 jruby )
versions.each do |version|
system <<-BASH
bash -c 'source ~/.rvm/scripts/rvm;
rvm use #{version};
echo "--------- #{version} ----------";
rake -s test:all'
BASH
end
end
end
# --------------------------------------------------
# Docs
# --------------------------------------------------
desc "Generate YARD Documentation"
task :yardoc do
require 'yard'
files = %w( lib/**/*.rb )
options = %w( -o doc/yard --readme README.md --files LICENSE )
YARD::CLI::Yardoc.run *(options + files)
end
# --------------------------------------------------
# Stats
# --------------------------------------------------
desc "LOC count"
task(:loc) do
loc = 0
Dir['lib/**/*'].each do |file|
next if File.directory?(file)
File.read(file).each_line do |line|
loc += 1 unless line.strip.empty? || line.strip =~ /^#/
end
end
puts "lib contains #{loc} SLOCs"
end