Skip to content

Commit 71330d1

Browse files
committed
Fix merge.
2 parents e285926 + 32a84d8 commit 71330d1

File tree

8 files changed

+105
-24
lines changed

8 files changed

+105
-24
lines changed

CHANGELOG.md

+62
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
## v50
2+
3+
Features:
4+
5+
* Restore ruby deploys back to normal
6+
7+
## v49 (1/30/2013)
8+
9+
Features:
10+
11+
* Re-enable ruby deploys for apps just using the heroku cache
12+
* Display ruby version change when busting the cache
13+
14+
## v48 (1/30/2013)
15+
16+
Features:
17+
18+
* Update deploy error message copy to link to status incident.
19+
20+
## v47 (1/30/2013)
21+
22+
Features:
23+
24+
* Disable ruby deploys due to rubygems.org compromise
25+
26+
## v46 (1/10/2013)
27+
28+
Features:
29+
30+
* Upgrade Bundler to 1.3.0.pre.5
31+
* bundler binstubs now go in vendor/bundle/bin
32+
33+
## v45 (12/14/2012)
34+
35+
Features:
36+
37+
* Stop setting env vars in bin/release now that login-shell is released
38+
* Enable Invoke Dynamic on JRuby by default
39+
* GEM_PATH is now updated on each push
40+
41+
## v44 (12/14/2012)
42+
43+
Faulty Release
44+
45+
## v43 (12/13/2012)
46+
47+
Features:
48+
49+
* Upgrade Bundler to 1.3.0.pre.2
50+
51+
## v42 (11/26/2012)
52+
53+
Features:
54+
55+
* Upgrade Bundler to 1.2.2 to fix Ruby 2.0.0/YAML issues
56+
57+
## v41 (11/1/2012)
58+
59+
Features:
60+
61+
* Enable ruby 2.0.0 support for testing
62+
163
## v40 (10/14/2012)
264

365
Features:

README.md

-11
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ With this [buildpack](http://devcenter.heroku.com/articles/buildpacks) you no lo
88
Usage
99
-----
1010

11-
Create a new Cedar-stack app with this buildpack
12-
1311
heroku create -s cedar --buildpack http://github.com/mattmanning/heroku-buildpack-ruby-jekyll.git
1412

1513
or add this buildpack to your current app
@@ -18,18 +16,10 @@ or add this buildpack to your current app
1816

1917
Create a Ruby web app with dependencies managed by [Bundler](http://gembundler.com/) and a Jekyll site. [Heroku-Jekyll-Hello-World](https://github.com/burkemw3/Heroku-Jekyll-Hello-World) can be used as a sample starter.
2018

21-
Push to heroku
22-
2319
git push heroku master
2420

2521
Watch it "Building jekyll site"
2622

27-
Counting objects: 12, done.
28-
Delta compression using up to 2 threads.
29-
Compressing objects: 100% (8/8), done.
30-
Writing objects: 100% (8/8), 1.10 KiB, done.
31-
Total 8 (delta 4), reused 0 (delta 0)
32-
3323
-----> Heroku receiving push
3424
-----> Fetching custom build pack... done
3525
-----> Ruby/Rack app detected
@@ -70,4 +60,3 @@ See Also
7060
--------
7161

7262
The blog post introducing this buildpack: [http://mwmanning.com/2011/11/29/Run-Your-Jekyll-Site-On-Heroku.html](http://mwmanning.com/2011/11/29/Run-Your-Jekyll-Site-On-Heroku.html).
73-

Rakefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def install_gem(gem, version)
5454
end
5555

5656
def build_ruby_command(name, output, prefix, usr_dir, tmpdir, rubygems = nil)
57+
vulcan_prefix = "/app/vendor/#{output}"
5758
build_command = [
5859
# need to move libyaml/libffi to dirs we can see
5960
"mv #{usr_dir} /tmp",
@@ -65,7 +66,7 @@ def build_ruby_command(name, output, prefix, usr_dir, tmpdir, rubygems = nil)
6566
build_command << "mv #{prefix} /app/vendor/#{output}" if prefix != "/app/vendor/#{output}"
6667
build_command = build_command.join(" && ")
6768

68-
sh "vulcan build -v -o #{output}.tgz --prefix #{prefix} --source #{name} --command=\"#{build_command}\""
69+
sh "vulcan build -v -o #{output}.tgz --prefix #{vulcan_prefix} --source #{name} --command=\"#{build_command}\""
6970
s3_upload(tmpdir, output)
7071
end
7172

@@ -178,7 +179,7 @@ task "ruby:install", :version do |t, args|
178179
# build ruby
179180
if major_ruby == "1.8"
180181
output = "ruby-build-#{version}"
181-
prefix = "/app/vendor/ruby-build-#{version}"
182+
prefix = "/tmp/ruby-#{version}"
182183
build_ruby_command(full_name, output, prefix, usr_dir, tmpdir, rubygems)
183184
end
184185
end

lib/language_pack.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ def self.detect(*args)
2222
require "language_pack/rack"
2323
require "language_pack/rails2"
2424
require "language_pack/rails3"
25-
25+
require "language_pack/disable_deploys"

lib/language_pack/base.rb

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def release
6262

6363
{
6464
"addons" => default_addons,
65-
"config_vars" => default_config_vars,
6665
"default_process_types" => default_process_types
6766
}.to_yaml
6867
end

lib/language_pack/disable_deploys.rb

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
require "language_pack"
2+
require "language_pack/base"
3+
4+
class LanguagePack::DisableDeploys < LanguagePack::Base
5+
def self.use?
6+
File.exist?("Gemfile")
7+
end
8+
9+
def name
10+
"Ruby/DisableDeploys"
11+
end
12+
13+
def compile
14+
error "Ruby deploys have been temporarily disabled due to a Rubygems.org security breach.\nPlease see https://status.heroku.com/incidents/489 for more info and a workaround if you need to deploy."
15+
end
16+
end
17+

lib/language_pack/rails3.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class LanguagePack::Rails3 < LanguagePack::Rails2
88
def self.use?
99
super &&
1010
File.exists?("config/application.rb") &&
11-
File.read("config/application.rb") =~ /Rails::Application/
11+
File.read("config/application.rb").include?("Rails::Application")
1212
end
1313

1414
def name

lib/language_pack/ruby.rb

+21-8
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
# base Ruby Language Pack. This is for any base ruby app.
77
class LanguagePack::Ruby < LanguagePack::Base
8-
BUILDPACK_VERSION = "v40"
8+
BUILDPACK_VERSION = "v50"
99
LIBYAML_VERSION = "0.1.4"
1010
LIBYAML_PATH = "libyaml-#{LIBYAML_VERSION}"
11-
BUNDLER_VERSION = "1.2.1"
11+
BUNDLER_VERSION = "1.3.0.pre.5"
1212
BUNDLER_GEM_PATH = "bundler-#{BUNDLER_VERSION}"
1313
NODE_VERSION = "0.4.7"
1414
NODE_JS_BINARY_PATH = "node-#{NODE_VERSION}"
@@ -142,7 +142,7 @@ def bootstrap_bundler(&block)
142142
# determine if we're using rbx
143143
# @return [Boolean] true if we are and false if we aren't
144144
def ruby_version_rbx?
145-
ruby_version ? ruby_version.match(/^rbx-/) : false
145+
ruby_version ? ruby_version.match(/rbx-/) : false
146146
end
147147

148148
# determine if we're using jruby
@@ -160,7 +160,7 @@ def default_java_opts
160160
# default JRUBY_OPTS
161161
# return [String] string of JRUBY_OPTS
162162
def default_jruby_opts
163-
"-Xcompile.invokedynamic=false"
163+
"-Xcompile.invokedynamic=true"
164164
end
165165

166166
# list the available valid ruby versions
@@ -192,7 +192,7 @@ def setup_language_pack_environment
192192

193193
# sets up the profile.d script for this buildpack
194194
def setup_profiled
195-
set_env_default "GEM_PATH", "$HOME/#{slug_vendor_base}"
195+
set_env_override "GEM_PATH", "$HOME/#{slug_vendor_base}:$GEM_PATH"
196196
set_env_default "LANG", "en_US.UTF-8"
197197
set_env_override "PATH", "$HOME/bin:$HOME/#{slug_vendor_base}/bin:$PATH"
198198

@@ -205,7 +205,7 @@ def setup_profiled
205205
# determines if a build ruby is required
206206
# @return [Boolean] true if a build ruby is required
207207
def build_ruby?
208-
@build_ruby ||= !ruby_version_jruby? && ruby_version != "ruby-1.9.3"
208+
@build_ruby ||= !ruby_version_rbx? && !ruby_version_jruby? && !%w{ruby-1.9.3 ruby-2.0.0}.include?(ruby_version)
209209
end
210210

211211
# install the vendored ruby
@@ -363,13 +363,17 @@ def remove_vendor_bundle
363363
def build_bundler
364364
log("bundle") do
365365
bundle_without = ENV["BUNDLE_WITHOUT"] || "development:test"
366-
bundle_command = "bundle install --without #{bundle_without} --path vendor/bundle --binstubs bin/"
366+
bundle_command = "bundle install --without #{bundle_without} --path vendor/bundle --binstubs vendor/bundle/bin"
367367

368368
unless File.exist?("Gemfile.lock")
369369
error "Gemfile.lock is required. Please run \"bundle install\" locally\nand commit your Gemfile.lock."
370370
end
371371

372372
if has_windows_gemfile_lock?
373+
topic "WARNING: Removing `Gemfile.lock` because it was generated on Windows."
374+
puts "Bundler will do a full resolve so native gems are handled properly."
375+
puts "This may result in unexpected gem versions being used in your app."
376+
373377
log("bundle", "has_windows_gemfile_lock")
374378
File.unlink("Gemfile.lock")
375379
else
@@ -409,6 +413,13 @@ def build_bundler
409413

410414
# Keep gem cache out of the slug
411415
FileUtils.rm_rf("#{slug_vendor_base}/cache")
416+
417+
# symlink binstubs
418+
bin_dir = "bin"
419+
FileUtils.mkdir_p bin_dir
420+
Dir["#{slug_vendor_base}/bin/*"].each do |bin|
421+
run("ln -s ../#{bin} #{bin_dir}") unless File.exist?("#{bin_dir}/#{bin}")
422+
end
412423
else
413424
log "bundle", :status => "failure"
414425
error_message = "Failed to install gems via Bundler."
@@ -606,8 +617,10 @@ def load_bundler_cache
606617
elsif !File.exists?(buildpack_version_cache) && File.exists?(ruby_version_cache)
607618
puts "Broken cache detected. Purging build cache."
608619
purge_bundler_cache
609-
elsif cache_exists?(bundler_cache) && !(File.exists?(ruby_version_cache) && full_ruby_version == File.read(ruby_version_cache).chomp)
620+
elsif cache_exists?(bundler_cache) && File.exists?(ruby_version_cache) && full_ruby_version != File.read(ruby_version_cache).chomp
610621
puts "Ruby version change detected. Clearing bundler cache."
622+
puts "Old: #{File.read(ruby_version_cache).chomp}"
623+
puts "New: #{full_ruby_version}"
611624
purge_bundler_cache
612625
end
613626

0 commit comments

Comments
 (0)