-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
161 lines (132 loc) · 3.9 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
require 'date'
require 'rspec/core/rake_task'
#############################################################################
#
# Helper functions
#
#############################################################################
def name
@name ||= Dir['*.gemspec'].first.split('.').first
end
def version
line = File.read("lib/#{name}/version.rb")[/^\s*VERSION\s*=\s*.*/]
line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
end
def date
Date.today.to_s
end
def rubyforge_project
name
end
def gemspec_file
"#{name}.gemspec"
end
def gem_file
"#{name}-#{version}.gem"
end
def replace_header(head, header_name, provider = nil)
if provider
value = send(provider)
else
value = "'#{send(header_name)}'"
end
provider ||= header_name
head.sub!(/(\.#{header_name}\s*= ).*/) { "#{$1}#{value}"}
end
def platform
jruby? ? '-java' : ''
end
def platform_dependant_gem_file
"#{name}-#{version}#{platform}.gem"
end
def platform_dependent_version
"'#{version}#{platform}'"
end
def jruby?
RUBY_PLATFORM.to_s == 'java'
end
def trim_array_ends array
array.shift
array.pop
array
end
#############################################################################
#
# Custom tasks
#
#############################################################################
default_rspec_opts = %w[--colour --format Fuubar]
desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = default_rspec_opts
end
#############################################################################
#
# Packaging tasks
#
#############################################################################
def built_gem
@built_gem ||= Dir["#{name}*.gem"].first
end
desc "Create tag v#{platform_dependent_version} and build and push #{platform_dependant_gem_file} to Rubygems"
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
sh "git commit --allow-empty -a -m 'Release #{platform_dependent_version}'"
sh "git tag v#{platform_dependent_version}"
sh "git push origin master"
sh "git push origin v#{platform_dependent_version}"
command = "gem push pkg/#{platform_dependant_gem_file}"
if jruby?
puts "--------------------------------------------------------------------------------------"
puts "can't push to rubygems using jruby at the moment, so switch to mri and run: #{command}"
puts "--------------------------------------------------------------------------------------"
else
sh command
end
end
desc "Build #{platform_dependant_gem_file} into the pkg directory"
task :build => :gemspec do
sh "mkdir -p pkg"
sh "gem build #{gemspec_file}"
sh "mv #{built_gem} pkg"
end
desc "Generate #{gemspec_file}"
task :gemspec => :validate do
# read spec file and split out manifest section
spec = File.read(gemspec_file)
head, manifest, tail = spec.split(" # = MANIFEST =\n")
# replace name version and date
replace_header(head, :name)
replace_header(head, :version)
replace_header(head, :date)
#comment this out if your rubyforge_project has a different name
#replace_header(head, :rubyforge_project)
# determine file list from git ls-files
files = `git ls-files`.
split("\n").
sort.
reject { |file| file =~ /^\./ }.
reject { |file| file =~ /^(rdoc|pkg)/ }.
map { |file| " #{file}" }.
join("\n")
# piece file back together and write
manifest = " s.files = %w[\n#{files}\n ]\n"
spec = [head, manifest, tail].join(" # = MANIFEST =\n")
File.open(gemspec_file, 'w') { |io| io.write(spec) }
puts "Updated #{gemspec_file}"
end
desc "Validate #{gemspec_file}"
task :validate do
libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
unless libfiles.empty?
puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
exit!
end
unless Dir['VERSION*'].empty?
puts "A `VERSION` file at root level violates Gem best practices."
exit!
end
end