Class: I

Inherits:
Object
  • Object
show all
Defined in:
lib/langrove/ext/i.rb

Class Method Summary collapse

Class Method Details

.notify(logger, need_description, tags = []) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/langrove/ext/i.rb', line 21

def self.notify( logger, need_description, tags = [] )
  
  #
  # log reminders into the running server 
  #
  do_it = "["
  tags.each do |tag|
    

    
    do_it = "#{do_it}:#{tag}, "
    
  end
  
  done = do_it.chop.chop
  
  logger.info( "#{done}] (todo) #{need_description}" )
  
end

.shoe(variable) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/langrove/ext/i.rb', line 11

def self.shoe( variable )

  #
  # i keep writing shoe, support it... ;)
  #
  
  ap variable

end

.show(variable) ⇒ Object



5
6
7
8
9
# File 'lib/langrove/ext/i.rb', line 5

def self.show( variable )
  
  ap variable

end