From 80b681686a8ba58a1fd7868c067ecc8bed41df15 Mon Sep 17 00:00:00 2001 From: Vasiliy Ermolovich Date: Tue, 15 May 2012 20:53:28 +0300 Subject: remove backported string interpolation --- guides/source/active_support_core_extensions.textile | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'guides/source') diff --git a/guides/source/active_support_core_extensions.textile b/guides/source/active_support_core_extensions.textile index bf30ed64c8..afd43ab317 100644 --- a/guides/source/active_support_core_extensions.textile +++ b/guides/source/active_support_core_extensions.textile @@ -1277,20 +1277,6 @@ The inquiry method converts a string into a +StringInquirer+ object mak "active".inquiry.inactive? # => false -h4. Key-based Interpolation - -In Ruby 1.9 the % string operator supports key-based interpolation, both formatted and unformatted: - - -"Total is %.02f" % {:total => 43.1} # => Total is 43.10 -"I say %{foo}" % {:foo => "wadus"} # => "I say wadus" -"I say %{woo}" % {:foo => "wadus"} # => KeyError - - -Active Support adds that functionality to % in previous versions of Ruby. - -NOTE: Defined in +active_support/core_ext/string/interpolation.rb+. - h4. +starts_with?+ and +ends_with?+ Active Support defines 3rd person aliases of +String#start_with?+ and +String#end_with?+: -- cgit v1.2.3