forked from natew/feedzirra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
51 lines (41 loc) · 1.36 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
require 'bundler'
Bundler.setup
require 'rake'
require 'rdoc/task'
require 'rspec'
require 'rspec/core/rake_task'
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'feedzirra/version'
def recent_specs(touched_since)
recent_specs = FileList['app/**/*'].map do |path|
if File.mtime(path) > touched_since
spec = File.join('spec', File.dirname(path).split("/")[1..-1].join('/'),
"#{File.basename(path, ".*")}_spec.rb")
spec if File.exists?(spec)
end
end.compact
recent_specs += FileList['spec/**/*_spec.rb'].select do |path|
File.mtime(path) > touched_since
end
recent_specs.uniq
end
RSpec::Core::RakeTask.new do |t|
t.pattern = FileList['spec/**/*_spec.rb']
end
desc 'Run recent specs'
RSpec::Core::RakeTask.new("spec:recent") do |t|
t.pattern = recent_specs(Time.now - 600) # 10 min.
end
RSpec::Core::RakeTask.new('spec:rcov') do |t|
t.pattern = FileList['spec/**/*_spec.rb']
t.rcov = true
t.rcov_opts = ['--exclude', 'spec,/usr/lib/ruby,/usr/local,/var/lib,/Library', '--text-report']
end
RDoc::Task.new do |rd|
rd.title = 'Feedzirra'
rd.rdoc_dir = 'rdoc'
rd.rdoc_files.include('README.rdoc', 'lib/feedzirra.rb', 'lib/feedzirra/**/*.rb')
rd.options = ["--quiet", "--opname", "index.html", "--line-numbers", "--inline-source", '--main', 'README.rdoc']
end
desc "Run all the tests"
task :default => :spec