Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/string_utils.rb

Defined Under Namespace

Modules: StringUtils

Instance Method Summary collapse

Instance Method Details

#/(value) ⇒ Object



49
50
51
# File 'lib/string_utils.rb', line 49

def /(value)
	return self.split(value) if value.class == String
end