You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

string_master

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string_master

0.4.0
bundlerRubygems
Version published
Maintainers
1
Created
Source

StringMaster

Most common string manipulations for a webapp

Why bother?

Because every time I create a new webapp, I think about how I should process user-generated content. Should convert urls to links and images? Should I allow certain tags? Should I convert all new lines to <br/> tags? Well, now all that is as simple as calling a single method.

INSTALLATION

  • gem install string_master
  • gem install ultraviolet (optional, if you want code highliting feature, only works in ruby 1.8.x)

Usage

Say you got this string

s = "Hello, glorious owner of the website\nI hope <b>you</b> like my message"

Oh my god, what am I going to do with it?

# try this
s.prep.newlines_to_br.html_escape
# which is equivalent to this (block notation)
s.prep { |s| s.newlines_to_br; s.html_escape }

Result:

Hello, glorious owner of the website
I hope &lt;you&gt; like my message

Fuck yeah.

More

Please read RDoc to see all of the available methods of StringMaster class: http://rdoc.info/gems/string_master/frames

FAQs

Package last updated on 25 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts