File: object.rb

package info (click to toggle)
ruby-packable 1.3.14-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: ruby: 609; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Packable
  module Extensions #:nodoc:
    module Object #:nodoc:
      def self.included(base) #:nodoc:
        base.class_eval do
          class << self
            # include only packers method into Object
            include PackersClassMethod
          end
        end
      end
    end
  end
end