aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-07 09:22:03 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-07 09:22:03 +0000
commit2101c25faf6560f2689584eadd12fd715533766b (patch)
tree4a2f69a2c3d7572bfa1be17399d0004240fc09fc
parent845e6ff45a704d1cb0495a31c05f5cb190252a43 (diff)
downloadrails-2101c25faf6560f2689584eadd12fd715533766b.tar.gz
rails-2101c25faf6560f2689584eadd12fd715533766b.tar.bz2
rails-2101c25faf6560f2689584eadd12fd715533766b.zip
Reference current fast_xs URL
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7774 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/core_ext/string/xchar.rb1
2 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 9bbe395923..e7d905540e 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,6 +1,6 @@
*SVN*
-* String#to_xs uses the fast_xs extension if available for Builder speedup. [Jeremy Kemper]
+* String#to_xs uses Eric Wong's fast_xs extension, if available, for Builder speedup. http://bogomips.org/fast_xs/ [Jeremy Kemper]
* Introduce BasicObject as Builder::BlankSlate for Ruby 1.9 forward compatibility. [Jeremy Kemper]
diff --git a/activesupport/lib/active_support/core_ext/string/xchar.rb b/activesupport/lib/active_support/core_ext/string/xchar.rb
index d6aa4aa036..df186e42d7 100644
--- a/activesupport/lib/active_support/core_ext/string/xchar.rb
+++ b/activesupport/lib/active_support/core_ext/string/xchar.rb
@@ -1,4 +1,5 @@
begin
+ # See http://bogomips.org/fast_xs/ by Eric Wong
require 'fast_xs'
class String