Skip to content

Commit 62c2ddd

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents c977f54 + fd5f880 commit 62c2ddd

File tree

3 files changed

+70
-2
lines changed

3 files changed

+70
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v12 (12/13/2011)
2+
3+
Bugfixes:
4+
5+
* syck workaround for yaml/psych issues
6+
17
## v11 (12/12/2011)
28

39
Features:

lib/language_pack/ruby.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ def build_bundler
238238
log("bundle") do
239239
bundle_without = ENV["BUNDLE_WITHOUT"] || "development:test"
240240
bundle_command = "bundle install --without #{bundle_without} --path vendor/bundle --binstubs bin/"
241+
syck_hack = File.expand_path(File.join(File.dirname(__FILE__), "../../vendor/syck_hack"))
241242

242243
unless File.exist?("Gemfile.lock")
243244
error "Gemfile.lock is required. Please run \"bundle install\" locally\nand commit your Gemfile.lock."
@@ -254,7 +255,7 @@ def build_bundler
254255

255256
cache_load "vendor/bundle"
256257

257-
version = run("bundle version").strip
258+
version = run("env RUBYOPT=\"-r #{syck_hack}\" bundle version").strip
258259
topic("Installing dependencies using #{version}")
259260

260261
bundler_output = ""
@@ -268,7 +269,7 @@ def build_bundler
268269
pwd = run("pwd").chomp
269270
# we need to set BUNDLE_CONFIG and BUNDLE_GEMFILE for
270271
# codon since it uses bundler.
271-
env_vars = "env BUNDLE_GEMFILE=#{pwd}/Gemfile BUNDLE_CONFIG=#{pwd}/.bundle/config CPATH=#{yaml_include}:$CPATH CPPATH=#{yaml_include}:$CPPATH LIBRARY_PATH=#{yaml_lib}:$LIBRARY_PATH"
272+
env_vars = "env BUNDLE_GEMFILE=#{pwd}/Gemfile BUNDLE_CONFIG=#{pwd}/.bundle/config CPATH=#{yaml_include}:$CPATH CPPATH=#{yaml_include}:$CPPATH LIBRARY_PATH=#{yaml_lib}:$LIBRARY_PATH RUBYOPT=\"-r #{syck_hack}\""
272273
puts "Running: #{bundle_command}"
273274
bundler_output << pipe("#{env_vars} #{bundle_command} --no-clean 2>&1")
274275

vendor/syck_hack.rb

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# :stopdoc:
2+
3+
# Hack to handle syck's DefaultKey bug
4+
#
5+
# This file is always loaded AFTER either syck or psych are already
6+
# loaded. It then looks at what constants are available and creates
7+
# a consistent view on all rubys.
8+
#
9+
# All this is so that there is always a YAML::Syck::DefaultKey
10+
# class no matter if the full yaml library has loaded or not.
11+
#
12+
13+
module YAML
14+
# In newer 1.9.2, there is a Syck toplevel constant instead of it
15+
# being underneith YAML. If so, reference it back under YAML as
16+
# well.
17+
if defined? ::Syck
18+
Syck = ::Syck
19+
20+
# Otherwise, if there is no YAML::Syck, then we've got just psych
21+
# loaded, so lets define a stub for DefaultKey.
22+
elsif !defined? YAML::Syck
23+
module Syck
24+
class DefaultKey
25+
end
26+
end
27+
end
28+
29+
# Now that we've got something that is always here, define #to_s
30+
# so when code tries to use this, it at least just shows up like it
31+
# should.
32+
module Syck
33+
class DefaultKey
34+
def to_s
35+
'='
36+
end
37+
end
38+
end
39+
end
40+
41+
# Sometime in the 1.9 dev cycle, the Syck constant was moved from under YAML
42+
# to be a toplevel constant. So gemspecs created under these versions of Syck
43+
# will have references to Syck::DefaultKey.
44+
#
45+
# So we need to be sure that we reference Syck at the toplevel too so that
46+
# we can always load these kind of gemspecs.
47+
#
48+
if !defined?(Syck)
49+
Syck = YAML::Syck
50+
end
51+
52+
# Now that we've got Syck setup in all the right places, store
53+
# a reference to the DefaultKey class inside Gem. We do this so that
54+
# if later on YAML, etc are redefined, we've still got a consistent
55+
# place to find the DefaultKey class for comparison.
56+
57+
module Gem
58+
SyckDefaultKey = YAML::Syck::DefaultKey
59+
end
60+
61+
# :startdoc:

0 commit comments

Comments
 (0)