Module: Monolens::Str

Extended by:
Namespace
Defined in:
lib/monolens/stdlib/str.rb,
lib/monolens/stdlib/str/split.rb,
lib/monolens/stdlib/str/strip.rb,
lib/monolens/stdlib/str/upcase.rb,
lib/monolens/stdlib/str/downcase.rb

Defined Under Namespace

Classes: Downcase, Split, Strip, Upcase

Class Method Summary collapse

Methods included from Namespace

factor_lens

Class Method Details

.downcase(options, registry) ⇒ Object



5
6
7
# File 'lib/monolens/stdlib/str.rb', line 5

def downcase(options, registry)
  Downcase.new(options, registry)
end

.split(options, registry) ⇒ Object



15
16
17
# File 'lib/monolens/stdlib/str.rb', line 15

def split(options, registry)
  Split.new(options, registry)
end

.strip(options, registry) ⇒ Object



10
11
12
# File 'lib/monolens/stdlib/str.rb', line 10

def strip(options, registry)
  Strip.new(options, registry)
end

.upcase(options, registry) ⇒ Object



20
21
22
# File 'lib/monolens/stdlib/str.rb', line 20

def upcase(options, registry)
  Upcase.new(options, registry)
end