summaryrefslogtreecommitdiff
path: root/www/rails/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'www/rails/patches/patch-ab')
-rw-r--r--www/rails/patches/patch-ab35
1 files changed, 35 insertions, 0 deletions
diff --git a/www/rails/patches/patch-ab b/www/rails/patches/patch-ab
new file mode 100644
index 00000000000..00099cf915c
--- /dev/null
+++ b/www/rails/patches/patch-ab
@@ -0,0 +1,35 @@
+$NetBSD: patch-ab,v 1.1.1.1 2006/10/12 08:36:22 minskim Exp $
+
+--- environments/boot.rb.orig 2006-08-10 10:34:33.000000000 -0700
++++ environments/boot.rb
+@@ -15,29 +15,7 @@ unless defined?(Rails::Initializer)
+ if File.directory?("#{RAILS_ROOT}/vendor/rails")
+ require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
+ else
+- require 'rubygems'
+-
+- environment_without_comments = IO.readlines(File.dirname(__FILE__) + '/environment.rb').reject { |l| l =~ /^#/ }.join
+- environment_without_comments =~ /[^#]RAILS_GEM_VERSION = '([\d.]+)'/
+- rails_gem_version = $1
+-
+- if version = defined?(RAILS_GEM_VERSION) ? RAILS_GEM_VERSION : rails_gem_version
+- rails_gem = Gem.cache.search('rails', "=#{version}").first
+-
+- if rails_gem
+- require_gem "rails", "=#{version}"
+- require rails_gem.full_gem_path + '/lib/initializer'
+- else
+- STDERR.puts %(Cannot find gem for Rails =#{version}:
+- Install the missing gem with 'gem install -v=#{version} rails', or
+- change environment.rb to define RAILS_GEM_VERSION with your desired version.
+- )
+- exit 1
+- end
+- else
+- require_gem "rails"
+- require 'initializer'
+- end
++ require 'initializer'
+ end
+
+ Rails::Initializer.run(:set_load_path)