forked from peterc/pismo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
49 lines (40 loc) · 935 Bytes
/
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
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
task :default => :test
desc 'Automatically run something when code is changed'
task :on_update do
require 'find'
files = {}
loop do
changed = false
Find.find(File.dirname(__FILE__)) do |file|
next unless file =~ /\.rb$/
ctime = File.ctime(file).to_i
if ctime != files[file]
files[file] = ctime
changed = true
end
end
if changed
system ARGV[1] || 'rake'
puts "\n" + Time.now.to_s
end
sleep 4
end
end
desc 'Console mode'
task :console do
require 'irb'
require 'lib/pismo'
require 'open-uri'
@d = Pismo.document(ARGV[1] || open('./test/corpus/bbcnews.html'))
# Get around IRB's issues with ARGV..
ARGV = []
IRB.start
end