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
9
10
11
|
# File 'lib/e4u.rb', line 9
def self.docomo
@docomo ||= DoCoMo.new
end
|
25
26
27
|
# File 'lib/e4u.rb', line 25
def self.google
@google ||= Google.new
end
|
13
14
15
|
# File 'lib/e4u.rb', line 13
def self.kddi
@kddi ||= KDDI.new
end
|
17
18
19
|
# File 'lib/e4u.rb', line 17
def self.kddiweb
self.kddi
end
|
21
22
23
|
# File 'lib/e4u.rb', line 21
def self.softbank
@softbank ||= Softbank.new
end
|