-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrakefile
346 lines (282 loc) · 9.12 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# rakefile for RDig.
# large parts borrowed from rake's Rakefile
begin
require 'rubygems'
require 'rake/gempackagetask'
rescue Exception
nil
end
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/packagetask'
require 'rake/contrib/rubyforgepublisher'
def announce(msg='')
STDERR.puts msg
end
PKG_NAME = 'rdig'
# Determine the current version of the software
if `ruby -Ilib ./bin/rdig --version` =~ /RDig version ([0-9.]+)$/
CURRENT_VERSION = $1
else
CURRENT_VERSION = "0.0.0"
end
if ENV['REL']
PKG_VERSION = ENV['REL']
else
PKG_VERSION = CURRENT_VERSION
end
SRC_RB = FileList['lib/**/*.rb']
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
RUBYFORGE_PROJECT = "rdig"
RUBYFORGE_USER = "jkraemer"
PKG_FILES = FileList[
"bin/**/*",
"lib/**/*",
"test/**/*",
"doc/**/*",
"[A-Z]*",
"install.rb",
"rakefile"
].exclude(/\.svn|~$|\.swp$/)
desc "Default Task"
task :default => [ :test_all ]
# Test Tasks -------------------------------------------------------------
task :ta => :test_all
task :tf => :test_functional
task :tu => :test_units
# Run all tests
Rake::TestTask.new("test_all") { |t|
t.test_files = FileList[
'test/unit/*_test.rb',
'test/functional/*_test.rb'
]
t.libs << "test"
#t.warning = true
t.verbose = true
}
# Run unit tests
Rake::TestTask.new("test_units") { |t|
t.test_files = FileList[ 'test/unit/*_test.rb' ]
t.libs << "test"
#t.warning = true
t.verbose = true
}
# Run functional tests
Rake::TestTask.new("test_functional") { |t|
t.test_files = FileList[ 'test/functional/*_test.rb' ]
t.libs << "test"
#t.warning = true
t.verbose = true
}
# Generate the RDoc documentation ----------------------------------------
rd = Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'html'
rdoc.title = "RDig - Ferret based full text search for web sites"
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.options << '--main' << 'README'
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'CHANGES', 'LICENSE', 'TODO')
rdoc.rdoc_files.include('lib/**/*.rb')
}
# packaging --------------------------------------------------------------
# ====================================================================
# Create a task that will package the software into distributable
# tar, zip and gem files.
if ! defined?(Gem)
puts "Package Target requires RubyGEMs"
else
spec = Gem::Specification.new do |s|
#### Basic information.
s.name = 'rdig'
s.version = PKG_VERSION
s.summary = "Ruby based web site indexing and searching library."
s.description = <<-EOF
RDig provides an HTTP crawler and content extraction utilities
to help building a site search for web sites or intranets. Internally,
Ferret is used for the full text indexing. After creating a config file
for your site, the index can be built with a single call to rdig.
For HTML page crawling, hpricot and rubyful_soup are supported.
EOF
#### Dependencies and requirements.
s.add_dependency('ferret', '>= 0.10.0')
s.add_dependency('hpricot', '>= 0.6')
s.add_dependency('htmlentities', '>= 4.0.0')
#s.requirements << ""
#### Which files are to be included in this gem? Everything! (Except CVS directories.)
s.files = PKG_FILES.to_a
#### Load-time details: library and application (you will need one or both).
s.require_path = 'lib' # Use these for libraries.
s.bindir = "bin" # Use these for applications.
s.executables = ["rdig"]
s.default_executable = "rdig"
#### Documentation and testing.
s.has_rdoc = true
s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a
s.rdoc_options <<
'--title' << 'Rake -- Ruby Make' <<
'--main' << 'README' <<
'--line-numbers'
#### Author and project details.
s.author = "Jens Kraemer"
s.email = "[email protected]"
s.homepage = "http://rdig.rubyforge.org/"
s.rubyforge_project = "rdig"
# if ENV['CERT_DIR']
# s.signing_key = File.join(ENV['CERT_DIR'], 'gem-private_key.pem')
# s.cert_chain = [File.join(ENV['CERT_DIR'], 'gem-public_cert.pem')]
# end
end
package_task = Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end
end
# misc ----------------------------------------------------------------
def count_lines(filename)
lines = 0
codelines = 0
open(filename) { |f|
f.each do |line|
lines += 1
next if line =~ /^\s*$/
next if line =~ /^\s*#/
codelines += 1
end
}
[lines, codelines]
end
def show_line(msg, lines, loc)
printf "%6s %6s %s\n", lines.to_s, loc.to_s, msg
end
desc "Count lines in the main rake file"
task :lines do
total_lines = 0
total_code = 0
show_line("File Name", "LINES", "LOC")
SRC_RB.each do |fn|
lines, codelines = count_lines(fn)
show_line(fn, lines, codelines)
total_lines += lines
total_code += codelines
end
show_line("TOTAL", total_lines, total_code)
end
# Define an optional publish target in an external file. If the
# publish.rf file is not found, the publish targets won't be defined.
load "publish.rf" if File.exist? "publish.rf"
# Support Tasks ------------------------------------------------------
desc "Look for TODO and FIXME tags in the code"
task :todo do
FileList['**/*.rb'].exclude('pkg').egrep /#.*(FIXME|TODO|TBD)/
end
desc "Look for Debugging print lines"
task :dbg do
FileList['**/*.rb'].egrep /\bDBG|\bbreakpoint\b/
end
desc "List all ruby files"
task :rubyfiles do
puts Dir['**/*.rb'].reject { |fn| fn =~ /^pkg/ }
puts Dir['bin/*'].reject { |fn| fn =~ /CVS|(~$)|(\.rb$)/ }
end
task :rf => :rubyfiles
# --------------------------------------------------------------------
# Creating a release
desc "Make a new release"
task :release => [
:prerelease,
:clobber,
:test_all,
:update_version,
:package,
:tag] do
announce
announce "**************************************************************"
announce "* Release #{PKG_VERSION} Complete."
announce "* Packages ready to upload."
announce "**************************************************************"
announce
end
# Validate that everything is ready to go for a release.
task :prerelease do
announce
announce "**************************************************************"
announce "* Making RubyGem Release #{PKG_VERSION}"
announce "* (current version #{CURRENT_VERSION})"
announce "**************************************************************"
announce
# Is a release number supplied?
unless ENV['REL']
fail "Usage: rake release REL=x.y.z [REUSE=tag_suffix]"
end
# Is the release different than the current release.
# (or is REUSE set?)
if PKG_VERSION == CURRENT_VERSION && ! ENV['REUSE']
fail "Current version is #{PKG_VERSION}, must specify REUSE=tag_suffix to reuse version"
end
# Are all source files checked in?
if ENV['RELTEST']
announce "Release Task Testing, skipping checked-in file test"
else
announce "Checking for unchecked-in files..."
data = `git status`
unless data =~ /working directory clean/
fail "GIT status is not clean ... do you have unchecked-in files?"
end
announce "No outstanding checkins found ... OK"
end
end
task :update_version => [:prerelease] do
if PKG_VERSION == CURRENT_VERSION
announce "No version change ... skipping version update"
else
announce "Updating RDig version to #{PKG_VERSION}"
open("lib/rdig.rb") do |rakein|
open("lib/rdig.rb.new", "w") do |rakeout|
rakein.each do |line|
if line =~ /^RDIGVERSION\s*=\s*/
rakeout.puts "RDIGVERSION = '#{PKG_VERSION}'"
else
rakeout.puts line
end
end
end
end
mv "lib/rdig.rb.new", "lib/rdig.rb"
if ENV['RELTEST']
announce "Release Task Testing, skipping commiting of new version"
else
sh %{git commit -a -m "Updated to version #{PKG_VERSION}" lib/rdig.rb}
sh %{git svn dcommit}
end
end
end
desc "Tag all files with the latest release number (REL=x.y.z)"
task :tag => [:prerelease] do
reltag = "REL_#{PKG_VERSION.gsub(/\./, '_')}"
reltag << ENV['REUSE'].gsub(/\./, '_') if ENV['REUSE']
announce "Tagging with [#{reltag}]"
if ENV['RELTEST']
announce "Release Task Testing, skipping tagging"
else
sh %{svn copy svn+ssh://[email protected]/var/svn/rdig/trunk svn+ssh://[email protected]/var/svn/rdig/tags/#{reltag}}
end
end
# --------------------------------------------------------------------
# Upload release to rubyforge
desc "Upload release to rubyforge"
task :prel do
`rubyforge login`
#for ext in %w( gem tgz )
for ext in %w( gem )
release_command = "rubyforge add_release #{RUBYFORGE_PROJECT} #{PKG_NAME} '#{PKG_VERSION}' pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}"
puts release_command
system(release_command)
end
end
# Publish RDocs ------------------------------------------------------
desc "Publish the API documentation"
task :pdoc => [:rdoc] do
Rake::RubyForgePublisher.new(RUBYFORGE_PROJECT, RUBYFORGE_USER).upload
end