Class: Because::Because

Inherits:
Conjunction::Conjunction show all
Defined in:
lib/because.rb

Instance Method Summary collapse

Methods inherited from Conjunction::Conjunction

#initialize, #inspect, #to_s

Constructor Details

This class inherits a constructor from Conjunction::Conjunction

Instance Method Details

#lObject



21
22
23
24
25
26
27
28
29
30
# File 'lib/because.rb', line 21

def l
  [
    'because',
    'since',
    '; the reason being that',
    'due to the fact that',
    'inasmuch as',
    '; for the reason that'
  ].map { |i| i.start_with?(';') ? i : " #{i}" }
end