Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

StringFormatter: a library for defining custom strf-style methods for your objects

Notifications You must be signed in to change notification settings

mark/string_formatter

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StringFormatter is a method for defining custom strf-style methods for your object.

* string_formatter require Ruby 1.9 or higher *

Example:

class PersonFormatter < StringFormatter
  
  f { |p| p.first_name }
  F { |p| p.first_name.upcase }
  l { |p| p.last_name  }

  punctuation

  pipe { |p| 'PIPE' }
  
end

class UpcaseFormatter < StringFormatter
  
  f { |p| p.first_name.upcase }
  l { |p| p.last_name.upcase  }
  
end

class Person
  attr_accessor :first_name, :last_name

  define_format_string :strf,   :with => PersonFormatter
  define_format_string :strfup, :with => UpcaseFormatter
  
  def initialize(*names)
    @first_name, @last_name = names
  end
  
end

p = Person.new("Bob", "Smith")

p.strf('%l, %f %|')
# => "Smith, Bob PIPE"

p.strfup('%l, %f')
# => "SMITH, BOB"

You can define definitions for lower case characters, upper case characters, and punctuation marks.  The method for lower and upper case characters is the character itself, and the punctuation marks have specific names for each.

About

StringFormatter: a library for defining custom strf-style methods for your objects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.