forked from gettalong/cmdparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
200 lines (154 loc) · 4.93 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
# -*- ruby -*-
#
# $Id$
#
# cmdparse: advanced command line parser supporting commands
# Copyright (C) 2004 Thomas Leitner
#
# This program is free software; you can redistribute it and/or modify it under the terms of the GNU
# General Public License as published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with this program; if not,
# write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
begin
require 'rubygems'
require 'rake/gempackagetask'
rescue Exception
nil
end
require 'rake/clean'
require 'rake/packagetask'
require 'rake/rdoctask'
require 'rake/testtask'
# General actions ##############################################################
$:.unshift 'lib'
require 'cmdparse'
PKG_NAME = "cmdparse"
PKG_VERSION = CmdParse::VERSION.join( '.' )
PKG_FULLNAME = PKG_NAME + "-" + PKG_VERSION
SRC_RB = FileList['lib/**/*.rb']
# The default task is run if rake is given no explicit arguments.
desc "Default Task"
task :default => :doc
# End user tasks ################################################################
desc "Prepares for installation"
task :prepare do
ruby "setup.rb config"
ruby "setup.rb setup"
end
desc "Installs the package #{PKG_NAME}"
task :install => [:prepare]
task :install do
ruby "setup.rb install"
end
task :clean do
ruby "setup.rb clean"
end
CLOBBER << "doc/output"
desc "Builds the documentation"
task :doc => [:rdoc] do
chdir "doc" do
sh "webgen"
end
end
rd = Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'doc/output/rdoc'
rdoc.title = PKG_NAME
rdoc.options << '--line-numbers' << '--inline-source' << '-m CmdParse::CommandParser'
rdoc.rdoc_files.include( 'lib/**/*.rb' )
end
# Developer tasks ##############################################################
PKG_FILES = FileList.new( [
'setup.rb',
'TODO',
'COPYING',
'README',
'Rakefile',
'ChangeLog',
'net.rb',
'VERSION',
'lib/**/*.rb',
'doc/**/*'
]) do |fl|
fl.exclude( /\bsvn\b/ )
fl.exclude( 'doc/output' )
end
if !defined? Gem
puts "Package Target requires RubyGEMs"
else
spec = Gem::Specification.new do |s|
#### Basic information
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = "Advanced command line parser supporting commands"
s.description = <<-EOF
cmdparse provides classes for parsing commands on the command line; command line options
are parsed using optparse or any other option parser implementation. Programs that use
such command line interfaces are, for example, subversion's 'svn' or Rubygem's 'gem' program.
EOF
#### Dependencies, requirements and files
s.files = PKG_FILES.to_a
s.require_path = 'lib'
s.autorequire = 'cmdparse'
#### Documentation
s.has_rdoc = true
s.extra_rdoc_files = rd.rdoc_files.reject do |fn| fn =~ /\.rb$/ end.to_a
s.rdoc_options = ['--line-numbers', '-m', 'CmdParse::CommandParser']
#### Author and project details
s.author = "Thomas Leitner"
s.email = "t_leitner@gmx.at"
s.homepage = "http://cmdparse.rubyforge.org"
s.rubyforge_project = "cmdparse"
end
task :package => [:generateFiles]
task :generateFiles do |t|
sh "svn log -r HEAD:1 -v > ChangeLog"
File.open('VERSION', 'w+') do |file| file.write( PKG_VERSION + "\n" ) end
end
CLOBBER << "ChangeLog" << "VERSION"
Rake::GemPackageTask.new( spec ) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end
end
desc "Upload documentation to homepage"
task :uploaddoc => [:doc] do
Dir.chdir('doc/output')
sh "scp -r * gettalong@rubyforge.org:/var/www/gforge-projects/cmdparse/"
end
# Misc tasks ###################################################################
def count_lines( filename )
lines = 0
codelines = 0
open( filename ) do |f|
f.each do |line|
lines += 1
next if line =~ /^\s*$/
next if line =~ /^\s*#/
codelines += 1
end
end
[lines, codelines]
end
def show_line( msg, lines, loc )
printf "%6s %6s %s\n", lines.to_s, loc.to_s, msg
end
desc "Show statistics"
task :statistics 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