forked from jmettraux/rufus-tokyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
103 lines (72 loc) · 1.61 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
require 'rubygems'
require 'rake'
require 'rake/clean'
require 'rake/packagetask'
require 'rake/gempackagetask'
require 'rake/rdoctask'
require 'rake/testtask'
require 'tasks/dev'
load 'rufus-tokyo.gemspec'
#
# tasks
CLEAN.include('pkg', 'tmp', 'rdoc')
task :default => [ :clean, :repackage ]
#
# SPECING
task :spec do
load File.dirname(__FILE__) + '/spec/spec.rb'
end
#
# TESTING
#Rake::TestTask.new(:test) do |t|
# t.libs << 'lib'
# t.libs << 'test'
# t.test_files = FileList['test/test.rb']
# t.verbose = true
#end
task :test => :spec
#
# PACKAGING
Rake::GemPackageTask.new($gemspec) do |pkg|
#pkg.need_tar = true
end
Rake::PackageTask.new('rufus-tokyo', '0.1.7') do |pkg|
pkg.need_zip = true
pkg.package_files = FileList[
'Rakefile',
'*.txt',
'lib/**/*',
'test/**/*'
].to_a
#pkg.package_files.delete("MISC.txt")
class << pkg
def package_name
"#{@name}-#{@version}-src"
end
end
end
#
# DOCUMENTATION
#ALLISON=`allison --path`
ALLISON='/Library/Ruby/Gems/1.8/gems/allison-2.0.3/lib/allison.rb'
Rake::RDocTask.new do |rd|
rd.main = 'README.txt'
rd.rdoc_dir = 'html/rufus-tokyo'
rd.rdoc_files.include(
'README.txt',
'CHANGELOG.txt',
'LICENSE.txt',
'CREDITS.txt',
'lib/**/*.rb')
rd.title = 'rufus-tokyo rdoc'
rd.options << '-N' # line numbers
rd.options << '-S' # inline source
rd.template = ALLISON if File.exist?(ALLISON)
end
#
# WEBSITE
task :upload_website => [ :clean, :rdoc ] do
account = '[email protected]'
webdir = '/var/www/gforge-projects/rufus'
sh "rsync -azv -e ssh html/rufus-tokyo #{account}:#{webdir}/"
end