~ubuntu-branches/ubuntu/trusty/ruby-facets/trusty

« back to all changes in this revision

Viewing changes to lib/core/facets/kernel/eigenclass.rb

  • Committer: Package Import Robot
  • Author(s): Marc Dequènes (Duck)
  • Date: 2013-06-21 14:41:38 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130621144138-nb3t82yl5gl8p7a6
Tags: 2.9.3-1
* New upstream release:
  - rakefile is gone, switched back to setuprb method
  - recreated documention build rules and adapted to new paths
* Updated copyright file.
* Increased Standards-Version to 3.9.4 (no changes).
* Removed transitional libfacets-* package and obsolete relations.
* Use system JQuery library instead of embedded one for documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
module Kernel
 
2
 
 
3
  # During this trying time when no one can get their
 
4
  # techie catchwords to stick to the refrigerator no
 
5
  # matter how hard they slap it with the enchanted
 
6
  # magnetic spatula, it’s good to know that the
 
7
  # contrived phrases really do fly, graceful and
 
8
  # unclasped and bearing north toward chilled shrimp.
 
9
  # I know what my Hallowe’en pumpkin is going to say.
 
10
  #
 
11
  # NOTE: This method is not a common core extension and is not
 
12
  # loaded automatically when using <code>require 'facets'</code>.
 
13
  #
 
14
  # CREDIT: WhyTheLuckyStiff
 
15
  #
 
16
  # @uncommon
 
17
  #   require 'facets/kernel/eigenclass'
 
18
  #
 
19
  def eigenclass
 
20
    (class << self; self; end)
 
21
  end
 
22
 
 
23
end
 
24