class HolaPouet
Class description goes here
A second line of description
Attributes
hey[RW]
some comment on attr_accessor
hoh[RW]
another comment on another attr_accessor
Public Class Methods
hi()
click to toggle source
The basic method. Testing +this tagging+.
# File lib/hola_pouet.rb, line 17 def self.hi puts 'Hello world from Hola (version 4+)' end
hi_advanced(some_parameter, **opts)
click to toggle source
@param [String] some_parameter blablabla @param [String] some_parameter: blablabla @param opts [Integer] example: a number @param opts [Date] some_date: a date
# File lib/hola_pouet.rb, line 25 def self.hi_advanced(some_parameter, **opts) puts 'Hello world from Hola (version 4+). Paramters is ' + some_parameter + ' with options ' + opts.to_s end
new()
click to toggle source
some `text and stuff` in this comment
# File lib/hola_pouet.rb, line 12 def initialize @hey = 'hey' end