forked from hone/heroku-buildpack-ruby
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
294 lines (244 loc) · 7.89 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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
require "fileutils"
require "tmpdir"
require 'hatchet/tasks'
S3_BUCKET_NAME = "heroku-buildpack-ruby"
VENDOR_URL = "https://s3.amazonaws.com/#{S3_BUCKET_NAME}"
def s3_tools_dir
File.expand_path("../support/s3", __FILE__)
end
def s3_upload(tmpdir, name)
sh("#{s3_tools_dir}/s3 put #{S3_BUCKET_NAME} #{name}.tgz #{tmpdir}/#{name}.tgz")
end
def vendor_plugin(git_url, branch = nil)
name = File.basename(git_url, File.extname(git_url))
Dir.mktmpdir("#{name}-") do |tmpdir|
FileUtils.rm_rf("#{tmpdir}/*")
Dir.chdir(tmpdir) do
sh "git clone #{git_url} ."
sh "git checkout origin/#{branch}" if branch
FileUtils.rm_rf("#{name}/.git")
sh("tar czvf #{tmpdir}/#{name}.tgz *")
s3_upload(tmpdir, name)
end
end
end
def in_gem_env(gem_home, &block)
old_gem_home = ENV['GEM_HOME']
old_gem_path = ENV['GEM_PATH']
ENV['GEM_HOME'] = ENV['GEM_PATH'] = gem_home.to_s
yield
ENV['GEM_HOME'] = old_gem_home
ENV['GEM_PATH'] = old_gem_path
end
def install_gem(gem, version)
name = "#{gem}-#{version}"
Dir.mktmpdir("#{gem}-#{version}") do |tmpdir|
Dir.chdir(tmpdir) do |dir|
FileUtils.rm_rf("#{tmpdir}/*")
in_gem_env(tmpdir) do
sh("unset RUBYOPT; gem install #{gem} --version #{version} --no-ri --no-rdoc --env-shebang")
sh("rm #{gem}-#{version}.gem")
sh("rm -rf cache/#{gem}-#{version}.gem")
sh("tar czvf #{tmpdir}/#{name}.tgz *")
s3_upload(tmpdir, name)
end
end
end
end
desc "update plugins"
task "plugins:update" do
vendor_plugin "http://github.com/heroku/rails_log_stdout.git", "legacy"
vendor_plugin "http://github.com/pedro/rails3_serve_static_assets.git"
vendor_plugin "http://github.com/hone/rails31_enable_runtime_asset_compilation.git"
end
desc "install vendored gem"
task "gem:install", :gem, :version do |t, args|
gem = args[:gem]
version = args[:version]
install_gem(gem, version)
end
desc "generate ruby versions manifest"
task "ruby:manifest" do
require 'rexml/document'
require 'yaml'
document = REXML::Document.new(`curl https://#{S3_BUCKET_NAME}.s3.amazonaws.com`)
rubies = document.elements.to_a("//Contents/Key").map {|node| node.text }.select {|text| text.match(/^(ruby|rbx|jruby)-\\\\d+\\\\.\\\\d+\\\\.\\\\d+(-p\\\\d+)?/) }
Dir.mktmpdir("ruby_versions-") do |tmpdir|
name = 'ruby_versions.yml'
File.open(name, 'w') {|file| file.puts(rubies.to_yaml) }
sh("#{s3_tools_dir}/s3 put #{S3_BUCKET_NAME} #{name} #{name}")
end
end
namespace :buildpack do
require 'netrc'
require 'excon'
require 'json'
require 'time'
require 'cgi'
require 'git'
require 'fileutils'
require 'digest/md5'
require 'securerandom'
def connection
@connection ||= begin
user, password = Netrc.read["api.heroku.com"]
Excon.new("https://#{CGI.escape(user)}:#{password}@buildkits.herokuapp.com")
end
end
def latest_release
@latest_release ||= begin
buildpack_name = "heroku/ruby"
response = connection.get(path: "buildpacks/#{buildpack_name}/revisions")
releases = JSON.parse(response.body)
# {
# "tar_link": "https://codon-buildpacks.s3.amazonaws.com/buildpacks/heroku/ruby-v84.tgz",
# "created_at": "2013-11-06T18:55:04Z",
# "published_by": "[email protected]",
# "id": 84
# }
releases.map! do |a|
a["created_at"] = Time.parse(a["created_at"])
a
end.sort! { |a,b| b["created_at"] <=> a["created_at"] }
releases.first
end
end
def new_version
@new_version ||= "v#{latest_release["id"] + 1}"
end
def git
@git ||= Git.open(".")
end
desc "increment buildpack version"
task :increment do
version_file = './lib/language_pack/version'
require './lib/language_pack'
require version_file
if LanguagePack::Base::BUILDPACK_VERSION != new_version
stashes = nil
if git.status.changed.any?
stashes = Git::Stashes.new(git)
stashes.save("WIP")
end
File.open("#{version_file}.rb", 'w') do |file|
file.puts <<-FILE
require "language_pack/base"
# This file is automatically generated by rake
module LanguagePack
class LanguagePack::Base
BUILDPACK_VERSION = "#{new_version}"
end
end
FILE
end
git.add "#{version_file}.rb"
git.commit "bump to #{new_version}"
stashes.pop if stashes
puts "Bumped to #{new_version}"
else
puts "Already on #{new_version}"
end
end
def changelog_entry?
File.read("./CHANGELOG.md").split("\n").any? {|line| line.match(/^## #{new_version}/) }
end
desc "check if there's a changelog for the new version"
task :changelog do
if changelog_entry?
puts "Changelog for #{new_version} exists"
else
puts "Please add a changelog entry for #{new_version}"
end
end
def github_remote
@github_remote ||= git.remotes.detect {|remote| remote.url.match(%r{heroku/heroku-buildpack-ruby.git$}) }
end
def git_push_master
puts "Pushing master"
git.push(github_remote, 'master', false)
$?.success?
end
desc "update master branch"
task :git_push_master do
git_push_master
end
desc "stage a tarball of the buildpack"
task :stage do
Dir.mktmpdir("heroku-buildpack-ruby") do |tmpdir|
Git.clone(File.expand_path("."), 'heroku-buildpack-ruby', path: tmpdir)
Dir.chdir(tmpdir) do |dir|
streamer = lambda do |chunk, remaining_bytes, total_bytes|
File.open("ruby.tgz", "w") {|file| file.print(chunk) }
end
Excon.get(latest_release["tar_link"], :response_block => streamer)
Dir.chdir("heroku-buildpack-ruby") do |dir|
sh "tar xzf ../ruby.tgz .env"
sh "tar czf ../buildpack.tgz * .env"
end
@digest = Digest::MD5.hexdigest(File.read("buildpack.tgz"))
end
filename = "buildpacks/#{@digest}.tgz"
puts "Writing to #{filename}"
FileUtils.mkdir_p("buildpacks/")
FileUtils.cp("#{tmpdir}/buildpack.tgz", filename)
FileUtils.cp("#{tmpdir}/buildpack.tgz", "buildpacks/buildpack.tgz")
end
end
def multipart_form_data(buildpack_file_path)
body = ''
boundary = SecureRandom.hex(4)
data = File.open(buildpack_file_path)
data.binmode if data.respond_to?(:binmode)
data.pos = 0 if data.respond_to?(:pos=)
body << "--#{boundary}" << Excon::CR_NL
body << %{Content-Disposition: form-data; name="buildpack"; filename="#{File.basename(buildpack_file_path)}"} << Excon::CR_NL
body << 'Content-Type: application/x-gtar' << Excon::CR_NL
body << Excon::CR_NL
body << File.read(buildpack_file_path)
body << Excon::CR_NL
body << "--#{boundary}--" << Excon::CR_NL
{
:headers => { 'Content-Type' => %{multipart/form-data; boundary="#{boundary}"} },
:body => body
}
end
task :publish do
buildpack_name = "heroku/ruby"
puts "Publishing #{buildpack_name} buildpack"
resp = connection.post(multipart_form_data("buildpacks/buildpack.tgz").merge(path: "/buildpacks/#{buildpack_name}"))
puts resp.status
puts resp.body
end
desc "tag a release"
task :tag do
tagged_version =
if @new_version.nil?
"v#{latest_release["id"]}"
else
new_version
end
git.add_tag(tagged_version)
puts "Created tag #{tagged_version}"
puts "Pushing tag to remote #{github_remote}"
git.push(github_remote, nil, true)
end
desc "release a new version of the buildpack"
task :release do
Rake::Task["buildpack:increment"].invoke
raise "Please add a changelog entry for #{new_version}" unless changelog_entry?
raise "Can't push to master" unless git_push_master
Rake::Task["buildpack:stage"].invoke
Rake::Task["buildpack:publish"].invoke
Rake::Task["buildpack:tag"].invoke
end
end
begin
require 'rspec/core/rake_task'
desc "Run specs"
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = %w(-fs --color)
#t.ruby_opts = %w(-w)
end
task :default => :spec
rescue LoadError => e
end