forked from camping/camping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
131 lines (105 loc) · 3.08 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
$:.unshift 'extras'
require 'rake'
require 'rake/clean'
require 'rake/testtask'
require 'tempfile'
require 'open3'
require File.expand_path('../constants', __FILE__)
CLEAN.include ['**/.*.sw?', '*.gem', '.config', 'test/test.log', '.*.pt']
task :default => :check
## RDoc
begin
gem 'rdoc', '~>3.9.0'
rescue LoadError
task :docs do
puts "** Camping needs RDoc 3.9 in order to use the Flipbook template."
end
else
require 'rdoc/task'
RDoc::Task.new(:docs) do |rdoc|
# We have a recent version of RDoc, so let's use flipbook.
require 'rdoc/generator/singledarkfish'
rdoc.options += ['-f', 'singledarkfish', *RDOC_OPTS]
rdoc.template = "flipbook"
rdoc.rdoc_dir = 'doc'
rdoc.title = "Camping, a Microframework"
rdoc.rdoc_files.add ['README', 'lib/camping-unabridged.rb', 'lib/camping/**/*.rb', 'book/*']
end
end
task :rubygems_docs do
require 'rubygems/doc_manager'
def spec.installation_path; '.' end
def spec.full_gem_path; '.' end
manager = Gem::DocManager.new(spec)
manager.generate_rdoc
end
desc "Packages Camping."
task :package => :clean
## Tests
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.test_files = FileList['test/app_*.rb']
end
## Diff
desc "Compare camping and camping-unabridged"
task :diff do
require 'ruby2ruby'
require 'ruby_parser'
u = Tempfile.new('unabridged')
m = Tempfile.new('mural')
u << Ruby2Ruby.new.process(RubyParser.new.parse(File.read("lib/camping.rb")))
m << Ruby2Ruby.new.process(RubyParser.new.parse(File.read("lib/camping-unabridged.rb")))
u.flush
m.flush
sh "diff -u #{u.path} #{m.path} | less"
u.delete
m.delete
end
error = false
## Check
task :check => ["test", "check:valid", "check:equal", "check:size", "check:lines", "check:exit"]
namespace :check do
desc "Check source code validity"
task :valid do
sh "ruby -c lib/camping.rb"
end
desc "Check equality between mural and unabridged"
task :equal do
require 'ruby_parser'
u = RubyParser.new.parse(File.read("lib/camping-unabridged.rb"))
m = RubyParser.new.parse(File.read("lib/camping.rb"))
u.reject! do |sexp|
sexp.is_a?(Sexp) and sexp[1] == s(:gvar, :$LOADED_FEATURES)
end
unless u == m
STDERR.puts "camping.rb and camping-unabridged.rb are not synchronized."
error = true
end
end
SIZE_LIMIT = 4096
desc "Compare camping sizes to unabridged"
task :size do
FileList["lib/camping*.rb"].each do |path|
s = File.size(path)
puts "%21s : % 6d % 4d%" % [File.basename(path), s, (100 * s / SIZE_LIMIT)]
end
if File.size("lib/camping.rb") > SIZE_LIMIT
STDERR.puts "lib/camping.rb: file is too big (> #{SIZE_LIMIT})"
error = true
end
end
desc "Verify that line lenght doesn't exceed 80 chars for camping.rb"
task :lines do
i = 1
File.open("lib/camping.rb").each_line do |line|
if line.size > 81 # 1 added for \n
error = true
STDERR.puts "lib/camping.rb:#{i}: line too long (#{line[-10..-1].inspect})"
end
i += 1
end
end
task :exit do
exit 1 if error
end
end