summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-15 15:45:14 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-15 15:45:14 +0000
commitea0fc44996271e4cabea9bb57036d4479acd28bb (patch)
tree8ed111dfa1ff3cca2227860134aec19769366eb6
parent4ccf22e18d5e2c541ac195bf7e71af3abb5d82f7 (diff)
merge revision(s) r44585: [Backport #9268]
* lib/net/smtp.rb: [DOC] Remove dead link to RAA by Giorgos Tsiftsis Fixes the following bugs: [Bug #9152] [Bug #9268] [Bug #9394] * lib/open-uri.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@44980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/net/smtp.rb5
-rw-r--r--lib/open-uri.rb2
-rw-r--r--version.h2
4 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ae5d9afe0..69c1246ac9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Feb 16 00:44:51 2014 Zachary Scott <e@zzak.io>
+
+ * lib/net/smtp.rb: [DOC] Remove dead link to RAA by Giorgos Tsiftsis
+ Fixes the following bugs: [Bug #9152] [Bug #9268] [Bug #9394]
+ * lib/open-uri.rb: ditto
+
Sun Feb 16 00:27:04 2014 Masaki Matsushita <glass.saga@gmail.com>
* hash.c (rb_hash_assoc): revert r42224. table->type->compare is
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index 11d16b1216..bbab05a5df 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -76,8 +76,9 @@ module Net
#
# This library does NOT provide functions to compose internet mails.
# You must create them by yourself. If you want better mail support,
- # try RubyMail or TMail. You can get both libraries from RAA.
- # (http://www.ruby-lang.org/en/raa.html)
+ # try RubyMail or TMail or search for alternatives in
+ # {RubyGems.org}[https://rubygems.org/] or {The Ruby
+ # Toolbox}[https://www.ruby-toolbox.com/].
#
# FYI: the official documentation on internet mail is: [RFC2822] (http://www.ietf.org/rfc/rfc2822.txt).
#
diff --git a/lib/open-uri.rb b/lib/open-uri.rb
index 47a9b90fd0..760c886b07 100644
--- a/lib/open-uri.rb
+++ b/lib/open-uri.rb
@@ -73,7 +73,7 @@ end
# The environment variables such as http_proxy, https_proxy and ftp_proxy
# are in effect by default. Here we disable proxy:
#
-# open("http://www.ruby-lang.org/en/raa.html", :proxy => nil) {|f|
+# open("http://www.ruby-lang.org/en/", :proxy => nil) {|f|
# # ...
# }
#
diff --git a/version.h b/version.h
index c0a0bbc5ea..e81663150b 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-02-16"
-#define RUBY_PATCHLEVEL 414
+#define RUBY_PATCHLEVEL 415
#define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 2