Sha256: 273909094fe8e4a2870e23e6f481801a17a24753ea592021f881fe7d8158af52

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
class String
  alias_method :-, :delete

  def n2br
    strip.gsub("\n", "<br />")
  end

  def wrap(prefix, suffix = prefix)
    prefix + self + suffix
  end

  def digitize
    gsub(/[^\d]/, "")  # "$100,000".digitize # => 100000
  end

  def to_url
    match(/^https?:\/\//) ? self : "http://" << self
  end

  def true?
    self == "true"
  end

  def false?
    self == "false"
  end

  # Generates all permutations for first and last name, based on the order of parts
  # A query with 4 words will generate 6 permutations
  def name_permutations
    parts = split(" ")
    (parts.size - 1).times.map do|i|
      # ["A", "B", "C", "D"]  =>  [["A B C", "D"], ["A B", "C D"], ["A", "B C D"]]
      [parts[(0..i)].join(" "), parts[(i + 1)..-1].join(" ")]
    end.inject([]) do |arr, perm|
      # Search both [first, last] and [last, first]
      # e.g. for every ["A B C", "D"], also include ["D", "A B C"]
      arr << perm
      arr << perm.reverse
      arr
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 lib/fat_free_crm/core_ext/string.rb
fat_free_crm-0.14.1 lib/fat_free_crm/core_ext/string.rb
fat_free_crm-0.15.0.beta lib/fat_free_crm/core_ext/string.rb
fat_free_crm-0.14.0 lib/fat_free_crm/core_ext/string.rb
reduced_fat_crm-0.15.0.beta lib/fat_free_crm/core_ext/string.rb
reduced_fat_crm-0.14.0 lib/fat_free_crm/core_ext/string.rb