summaryrefslogtreecommitdiff
path: root/Rakefile
blob: d14cf54043d78b88cb06535092c896c50b37cc5d (plain)
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
# excuse me, this is my first Rakefile :(  [m]
require 'rake'
require 'rake_helpers/rdoctask2'
require 'rake/gempackagetask.rb'

ROOT = ''
LIB_ROOT = ROOT + 'lib/'

task :default => :make

#task :doc => [:deldoc, :make_doc]
#task :minidoc => [:deldoc, :make_minidoc]
#task :deldoc do
#	rm_r 'doc' if File.directory? 'doc'
#end

def set_rdoc_info rd, small = false
#	rd.rdoc_dir = 'doc'
	rd.main = ROOT + 'README'
	rd.title = "CodeRay Documentation"
	rd.options << '--line-numbers' << '--inline-source' << '--tab-width' << '2'
	rd.options << '--fmt' << 'html_coderay'
	rd.options << '--all'
	rd.template = 'rake_helpers/coderay_rdoc_template.rb'
	rd.rdoc_files.add ROOT + 'README'
	rd.rdoc_files.add *Dir[LIB_ROOT + "#{'**/' unless small}*.rb"]
end

desc 'Generate documentation for CodeRay'
Rake::RDocTask.new :rdoc do |rd|
	set_rdoc_info rd
end

desc 'Generate test documentation for CodeRay'
Rake::RDocTask.new :rdoc_small do |rd|
	set_rdoc_info rd, true
end

desc 'Report code statistics (LOC) from the application'
task :stats => :copy_files do
	require 'code_statistics'
	CodeStatistics.new(
		["Main", "lib"]
	).to_s
end

desc 'Test CodeRay'
task :test do
	system 'ruby -w ./test/suite.rb'
end

desc 'Test CodeRay with debugging'
task :debug do
	system 'ruby -w -d ./test/suite.rb'
end

desc 'Do a benchmark'
task :bench do
	system 'ruby -wIlib bench\bench.rb ruby html 0'
end

def gemspec
	Gem::Specification.new do |s|
		# Basic Information
		s.name = s.rubyforge_project = 'coderay'
		s.version = '0'
		
		s.platform = Gem::Platform::RUBY
		s.requirements = ['strscan']
		s.date = Time.now.strftime '%Y-%m-%d'
		s.has_rdoc = true
		s.rdoc_options = '-SNw2', '-mREADME', '-a', '-t CodeRay Documentation'
		s.extra_rdoc_files = %w(./README)

		# Description
		s.summary = <<-EOF
	CodeRay is a fast syntax highlighter engine for many languages.
		EOF
		s.description = <<-EOF
  CodeRay is a Ruby library for syntax highlighting.
  I try to make CodeRay easy to use and intuitive, but at the same time
  fully featured, complete, fast and efficient.

	Usage is simple:
		require 'coderay'
		code = 'some %q(weird (Ruby) can\'t shock) me!'
		puts CodeRay.scan(code, :ruby).html
		EOF

		# Files
		s.require_path = 'lib'
  	s.autorequire = 'coderay'

  	s.files = nil  # defined later		

		# Credits
		s.author = 'murphy'
		s.email = 'murphy@cYcnus.de'
		s.homepage = 'http://rd.cycnus.de/coderay'
	end
end

gemtask = Rake::GemPackageTask.new(gemspec) do |pkg|
	pkg.need_zip = true
	pkg.need_tar = true
end

$: << './lib'
require 'coderay'
$version = CodeRay::Version

desc 'Create the gem again'
task :make => [:build, :make_gem]

BUILD_FILE = 'build'
task :build do
	$version.sub!(/\d+$/) { |minor| minor.to_i - 1 }
	$version << '.' << (`svn info`[/Revision: (\d+)/,1])
end

task :make_gem => [:copy_files, :make_gemspec, :gem, :copy_gem]

desc 'Copy the gem files'
task :copy_files do
	rm_r 'pkg' if File.exist? 'pkg'
end

task :make_gemspec do
	candidates = Dir['./lib/**/*.rb'] +
		Dir['./demo/*.rb'] +
#		Dir['./bin/*'] +
#		Dir['./demo/bench/*'] +
#		Dir['./test/*'] +
		%w( ./README ./LICENSE)
	s = gemtask.gem_spec
	s.files = candidates #.delete_if { |item| item[/(?:CVS|rdoc)|~$/] }
	gemtask.version = s.version = $version
end

GEMDIR = 'gem_server/gems'
task :copy_gem => :build do
	$gemfile = "coderay-#$version.gem"
	Dir[GEMDIR + '/*.gem'].each { |g| rm g }
	cp "pkg/#$gemfile", GEMDIR
	system 'ruby -S generate_yaml_index.rb -d gem_server'
end

def g msg
	$stderr.print msg
end
def gn msg = ''
	$stderr.puts msg
end
def gd
	gn 'done.'
end

require 'net/ftp'
require 'yaml'
FTP_YAML = 'ftp.yaml'
$username = File.exist?(FTP_YAML) ? YAML.load_file(FTP_YAML)[:username] : 'anonymous'

FTP_DOMAIN = 'cycnus.de'
FTP_CODERAY_DIR = 'public_html/raindark/coderay'

def cYcnus_ftp
	Net::FTP.open(FTP_DOMAIN) do |ftp|
		g 'ftp login, password needed: '
		ftp.login $username, $stdin.gets
		gn 'logged in.'
		yield ftp
	end
end

def uploader_for ftp
	proc do |l, *r|
		r = r.first || l
		raise 'File %s not found!' % l unless File.exist? l
		if l == r
			g 'Uploading %s...' % [l]
		else
			g 'Uploading %s to %s...' % [l, r]
		end
		ftp.putbinaryfile l, r
		gd
	end
end

desc 'Upload gemfile to ' + FTP_DOMAIN
task :up_gem => :copy_gem do
	gn 'Uploading gem:'
	Dir.chdir 'gem_server' do
		cYcnus_ftp do |ftp|
			uploader = uploader_for ftp
			ftp.chdir FTP_CODERAY_DIR
			%w(yaml yaml.Z).each &uploader
			Dir.chdir 'gems' do
				ftp.chdir 'gems'
				uploader.call $gemfile
			end
		end
	end
	gn 'Gem successfully uploaded.'
end

desc 'Upload example to ' + FTP_DOMAIN
task :up_example do
	g 'Highlighting self...'
	system 'ruby -wIlib ../hidden/highlight.rb -r -1 -I lib demo bin rake_helpers'
	gd
	gn 'Uploading example:'
	cYcnus_ftp do |ftp|
		ftp.chdir FTP_CODERAY_DIR
		uploader = proc do |l, r|
			g 'Uploading %s to %s...' % [l, r]
			ftp.putbinaryfile l, r
			gd
		end
		uploader.call 'highlighted/all_in_one.html', 'example.html'
	end
	gn 'Example uploaded.'
end

desc 'Upload rdoc to ' + FTP_DOMAIN
task :up_doc => :rdoc do
	gn 'Uploading documentation:'
	Dir.chdir 'rdoc' do
		cYcnus_ftp do |ftp|
			uploader = uploader_for ftp
			ftp.chdir FTP_CODERAY_DIR
			ftp.chdir 'doc'
			Dir['**/*.*'].each &uploader
		end
	end
	gn 'Documentation uploaded.'
end