mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
work around regression in ruby head
This commit is contained in:
parent
2fa911f133
commit
da62a10b77
@ -18,6 +18,14 @@ module Discourse
|
|||||||
# Application configuration should go into files in config/initializers
|
# Application configuration should go into files in config/initializers
|
||||||
# -- all .rb files in that directory are automatically loaded.
|
# -- all .rb files in that directory are automatically loaded.
|
||||||
|
|
||||||
|
# HACK!! regression in rubygems / bundler in ruby-head
|
||||||
|
if RUBY_VERSION == "2.1.0"
|
||||||
|
$:.map! do |path|
|
||||||
|
path = File.expand_path(path.sub("../../","../")) if path =~ /fast_xor/ && !File.directory?(File.expand_path(path))
|
||||||
|
path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
require 'discourse'
|
require 'discourse'
|
||||||
require 'js_locale_helper'
|
require 'js_locale_helper'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user