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
|
Description: Upstream changes introduced in version 2.3.5-1.1
This patch has been created by dpkg-source during the package build.
Here's the last changelog entry, hopefully it gives details on why
those changes were made:
.
rails (2.3.5-1.1) unstable; urgency=low
.
* Non-maintainer upload.
* Added missing build-dependencies for rails-ruby1.8 on libactionpack-
ruby1.8, libactionmailer-ruby1.8 and libactiveresource-ruby1.8
(Closes: #587048)
* Fixed broken symlink to railties on new project generator (Closes:
#583219)
.
The person named in the Author field signed this changelog entry.
Author: Gunnar Wolf <gwolf@debian.org>
Bug-Debian: http://bugs.debian.org/583219
Bug-Debian: http://bugs.debian.org/587048
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
--- rails-2.3.5.orig/railties/lib/rails_generator/generators/applications/app/app_generator.rb
+++ rails-2.3.5/railties/lib/rails_generator/generators/applications/app/app_generator.rb
@@ -250,7 +250,7 @@ class AppGenerator < Rails::Generator::B
def create_debian_railties_link(m)
m.symlink "/usr/share/rails-ruby1.8", "vendor/rails"
- m.symlink "/usr/share/rails/railties-ruby1.8", "vendor/railties"
+ m.symlink "/usr/share/rails-ruby1.8/railties", "vendor/railties"
end
@@ -267,4 +267,4 @@ class AppGenerator < Rails::Generator::B
"/opt/lampp/var/mysql/mysql.sock" # xampp for linux
].find { |f| File.exist?(f) } unless RUBY_PLATFORM =~ /(:?mswin|mingw)/
end
-end
\ No newline at end of file
+end
|