forked from leahneukirchen/bacon
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Rakefile
149 lines (123 loc) · 3.56 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
# Rakefile for Bacon. -*-ruby-*-
require 'rake/rdoctask'
require 'rake/testtask'
desc "Run all the tests"
task :default => [:test]
desc "Do predistribution stuff"
task :predist => [:chmod, :changelog, :rdoc]
desc "Make an archive as .tar.gz"
task :dist => [:test, :predist] do
sh "git archive --format=tar --prefix=#{release}/ HEAD^{tree} >#{release}.tar"
sh "pax -waf #{release}.tar -s ':^:#{release}/:' RDOX ChangeLog doc"
sh "gzip -f -9 #{release}.tar"
end
# Helper to retrieve the "revision number" of the git tree.
def git_tree_version
#if File.directory?(".git")
if false
@tree_version ||= `git describe`.strip.sub('-', '.')
@tree_version << ".0" unless @tree_version.count('.') == 2
else
#$: << "lib"
#require 'mac_bacon'
#@tree_version = Bacon::VERSION
@tree_version = "1.3"
end
@tree_version
end
def gem_version
git_tree_version.gsub(/-.*/, '')
end
def release
"macbacon-#{git_tree_version}"
end
def manifest
`git ls-files`.split("\n") - [".gitignore"]
end
desc "Make binaries executable"
task :chmod do
Dir["bin/*"].each { |binary| File.chmod(0775, binary) }
end
desc "Generate a ChangeLog"
task :changelog do
File.open("ChangeLog", "w") { |out|
`git log -z`.split("\0").map { |chunk|
author = chunk[/Author: (.*)/, 1].strip
date = chunk[/Date: (.*)/, 1].strip
desc, detail = $'.strip.split("\n", 2)
detail ||= ""
detail = detail.gsub(/.*darcs-hash:.*/, '')
detail.rstrip!
out.puts "#{date} #{author}"
out.puts " * #{desc.strip}"
out.puts detail unless detail.empty?
out.puts
}
}
end
desc "Generate RDox"
task "RDOX" do
begin
sh "macruby -Ilib bin/macbacon --automatic --specdox >RDOX"
rescue Exception
end
end
desc "Run all the tests"
task :test do
sh "macruby -Ilib bin/macbacon --automatic --quiet"
end
begin
$" << "sources" if defined? FromSrc
require 'rubygems'
require 'rake'
require 'rake/clean'
require 'rake/packagetask'
require 'rake/gempackagetask'
require 'fileutils'
rescue LoadError
# Too bad.
else
spec = Gem::Specification.new do |s|
s.name = "mac_bacon"
s.version = gem_version
s.platform = Gem::Platform::RUBY
s.summary = "a small RSpec clone for MacRuby"
s.description = <<-EOF
Bacon is a small RSpec clone weighing less than 350 LoC but
nevertheless providing all essential features.
This MacBacon fork differs with regular Bacon in that it operates
properly in a NSRunloop based environment. I.e. MacRuby/Objective-C.
https://github.com/alloy/MacBacon
EOF
s.files = manifest + %w(RDOX ChangeLog)
s.bindir = 'bin'
s.executables << 'macbacon'
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.md', 'RDOX']
s.test_files = []
s.author = 'Eloy Durán'
s.email = '[email protected]'
s.homepage = 'https://github.com/alloy/MacBacon'
end
#task :gem => [:chmod, :changelog]
task :gem => [:chmod]
Rake::GemPackageTask.new(spec) do |p|
p.gem_spec = spec
p.need_tar = false
p.need_zip = false
end
end
desc "Generate RDoc documentation"
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.options << '--line-numbers' << '--inline-source' <<
'--main' << 'README.md' <<
'--title' << 'Bacon Documentation' <<
'--charset' << 'utf-8'
rdoc.rdoc_dir = "doc"
rdoc.rdoc_files.include 'README.md'
rdoc.rdoc_files.include 'COPYING'
rdoc.rdoc_files.include 'RDOX'
rdoc.rdoc_files.include('lib/mac_bacon.rb')
end
task :rdoc => ["RDOX"]