Module: E4U

Defined in:
lib/e4u.rb,
lib/e4u/base.rb,
lib/e4u/kddi.rb,
lib/e4u/docomo.rb,
lib/e4u/google.rb,
lib/e4u/softbank.rb

Defined Under Namespace

Classes: Base, DoCoMo, Google, KDDI, KDDIWeb, Softbank

Class Method Summary collapse

Class Method Details

.docomoObject



11
12
13
# File 'lib/e4u.rb', line 11

def self.docomo
  @docomo ||= DoCoMo.new
end

.googleObject



27
28
29
# File 'lib/e4u.rb', line 27

def self.google
  @google ||= Google.new
end

.kddiObject



15
16
17
# File 'lib/e4u.rb', line 15

def self.kddi
  @kddi ||= KDDI.new
end

.kddiwebObject



19
20
21
# File 'lib/e4u.rb', line 19

def self.kddiweb
  self.kddi
end

.softbankObject



23
24
25
# File 'lib/e4u.rb', line 23

def self.softbank
  @softbank ||= Softbank.new
end