Sha256: fd6e6d626c6954c067d2fc4b5e76f767af1c208114bbaf8c15af0d53f0cc8992

Contents?: true

Size: 169 Bytes

Versions: 1

Compression:

Stored size: 169 Bytes

Contents

module FormattingHelper
  # Remove surrounding quotes from string
  def remove_surrounding_quotes(string)
    string.gsub!(/^\"|"\Z/, '') unless string.blank?
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kakimasu-1.0.0 app/helpers/formatting_helper.rb