class Object

Copyright © 2009-2010 Paolo Capriotti <p.capriotti@gmail.com>

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

Constants

KDE
ParseException
RUI

Public Instance Methods

metaclass() click to toggle source
# File lib/rui/utils.rb, line 9
def metaclass
  class << self
    self
  end
end
metaclass_eval(&blk) click to toggle source
# File lib/rui/utils.rb, line 15
def metaclass_eval(&blk)
  metaclass.instance_eval(&blk)
end