Module: Monolens::Str

Defined in:
lib/monolens/str.rb,
lib/monolens/str/split.rb,
lib/monolens/str/strip.rb,
lib/monolens/str/upcase.rb,
lib/monolens/str/downcase.rb

Defined Under Namespace

Classes: Downcase, Split, Strip, Upcase

Class Method Summary collapse

Class Method Details

.downcase(options = {}) ⇒ Object



3
4
5
# File 'lib/monolens/str.rb', line 3

def downcase(options = {})
  Downcase.new(options)
end

.split(options = {}) ⇒ Object



13
14
15
# File 'lib/monolens/str.rb', line 13

def split(options = {})
  Split.new(options)
end

.strip(options = {}) ⇒ Object



8
9
10
# File 'lib/monolens/str.rb', line 8

def strip(options = {})
  Strip.new(options)
end

.upcase(options = {}) ⇒ Object



18
19
20
# File 'lib/monolens/str.rb', line 18

def upcase(options = {})
  Upcase.new(options)
end