Module: Imasgen

Defined in:
lib/imasgen.rb,
lib/imasgen/name.rb,
lib/imasgen/sidem.rb,
lib/imasgen/mixnuts.rb,
lib/imasgen/version.rb,
lib/imasgen/million_live.rb,
lib/imasgen/generator_base.rb,
lib/imasgen/cinderella_girls.rb

Defined Under Namespace

Classes: CinderellaGirlsCls, GeneratorBase, MIXNUTSCls, MillionLiveCls, Name, SideMCls

Constant Summary collapse

SIDEM =
:sidem
MILLIONLIVE =
:millionlive
CINDERELLA =
:cinderella
VERSION =
"0.1.0"

Class Method Summary collapse

Class Method Details

.cinderellaObject



17
18
19
20
21
# File 'lib/imasgen/cinderella_girls.rb', line 17

def self.cinderella
  @imas_cg ||= Imasgen::CinderellaGirlsCls.new
  @imas_cg.auto_reset = true
  @imas_cg
end

.millionliveObject



17
18
19
20
21
# File 'lib/imasgen/million_live.rb', line 17

def self.millionlive
  @imas_ml ||= MillionLiveCls.new
  @imas_ml.auto_reset = true
  @imas_ml
end

.mixnuts(*args) ⇒ Object



40
41
42
43
44
# File 'lib/imasgen/mixnuts.rb', line 40

def self.mixnuts(*args)
  nuts = MIXNUTSCls.new(*args)
  nuts.auto_reset = true
  nuts
end

.sidemObject



17
18
19
20
21
# File 'lib/imasgen/sidem.rb', line 17

def self.sidem
  @sidem ||= SideMCls.new
  @sidem.auto_reset = true
  @sidem
end