-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRakefile
174 lines (136 loc) · 3.87 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
# Rakefile for stream -*- ruby -*-
begin
require 'rubygems'
rescue Exception
nil
end
require 'rake/clean'
require 'rake/testtask'
require 'rake/gempackagetask'
require 'rake/rdoctask'
# Determine the current version of the software
if `ruby -Ilib -rstream -e'puts STREAM_VERSION'` =~ /\S+$/
PKG_VERSION = $&
else
PKG_VERSION = "0.0.0"
end
SUMMARY = "Stream - Extended External Iterators"
SRC_RB = FileList['lib/*.rb']
# The default task is run if rake is given no explicit arguments.
desc "Default Task"
task :default => :test
# Define a test task.
Rake::TestTask.new { |t|
#t.libs << "tests"
#t.pattern = 'tests/Test*.rb'
t.verbose = true
}
task :test
# Define a test that will run all the test targets.
desc "Run all test targets"
task :testall => [:test ]
# Install stream using the standard install.rb script.
desc "Install the application"
task :install do
ruby "install.rb"
end
# Create a task to build the RDOC documentation tree.
rd = Rake::RDocTask.new("rdoc") { |rdoc|
rdoc.rdoc_dir = 'stream'
# rdoc.template = 'kilmer'
# rdoc.template = 'css2'
rdoc.title = SUMMARY
rdoc.options << '--line-numbers' << '--inline-source' <<
'--main' << 'README'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/*.rb', 'doc/**/*.rdoc')
}
# ====================================================================
# Create a task that will package the stream software into distributable
# tar, zip and gem files.
PKG_FILES = FileList[
'install.rb',
'[A-Z]*',
'lib/**/*.rb',
'test/**/*.rb',
'examples/**/*'
]
if ! defined?(Gem)
puts "Package Target requires RubyGEMs"
else
spec = Gem::Specification.new do |s|
#### Basic information.
s.name = 'stream'
s.version = PKG_VERSION
s.platform = Gem::Platform::RUBY
s.summary = "Stream - Extended External Iterators"
s.description = <<-EOF
Module Stream defines an interface for external iterators.
EOF
#### Dependencies and requirements.
#s.add_dependency('log4r', '> 1.0.4')
#s.requirements << ""
#### Which files are to be included in this gem? Everything! (Except CVS directories.)
s.files = PKG_FILES.to_a
#### C code extensions.
#s.extensions << "nothing.rb"
#### Load-time details: library and application (you will need one or both).
s.require_path = 'lib' # Use these for libraries.
s.autorequire = 'stream'
#### Documentation and testing.
s.has_rdoc = true
s.extra_rdoc_files = ['README']
s.rdoc_options <<
'--title' << SUMMARY
'--main' << 'README' <<
'--line-numbers'
#### Author and project details.
s.author = "Horst Duchene"
s.email = "hd.at.clr@hduchene.de"
s.homepage = "rgl.rubyforge.org"
s.rubyforge_project = "rgl"
end
Rake::GemPackageTask.new(spec) do |pkg|
#pkg.need_zip = true
pkg.need_tar = true
end
end
# Misc tasks =========================================================
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 files"
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
ARCHIVEDIR = '/mnt/flash'
desc "Create archives (tgz, zip, gem)"
task :archive => [:package] do
cp FileList["pkg/*.tgz", "pkg/*.zip", "pkg/*.gem"], ARCHIVEDIR
end
desc "Copy rdoc html to rubyforge"
task :rdoc2rf => [:rdoc] do
sh "scp -r stream monora@rubyforge.org:/var/www/gforge-projects/rgl"
end