Sha256: 0f0a7ca326ce98485d43d96ba3f535b3ff8ad31e4c3ed12f9bb0e7fd13807e1e

Contents?: true

Size: 927 Bytes

Versions: 17

Compression:

Stored size: 927 Bytes

Contents

# = Instantiable
#
# Initialize modules, almost as if they were classes.
#
# == Authors
#
# * Thomas Sawyer
#
# == Copying
#
# Copyright (c) 2006 Thomas Sawyer
#
# Ruby License
#
# This module is free software. You may use, modify, and/or redistribute this
# software under the same terms as Ruby.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.


# = Instantiable
#
# Initialize modules, almost as if they were classes.
#
# Alows a module to be used much like a class, by defining
# a #new method that creates a class on demand.
#
module Instantiable

  def self.append_features(mod)
    mod.extend self
  end

  # Never use a class agian! ;)

  def new(*args,&blk)
    mod = self
    @instantiable_class ||= Class.new{include mod}
    @instantiable_class.new(*args,&blk)
  end

end



Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
facets-2.8.4 lib/more/facets/instantiable.rb
facets-2.8.3 lib/more/facets/instantiable.rb
facets-2.8.2 lib/more/facets/instantiable.rb
facets-2.8.1 lib/more/facets/instantiable.rb
facets-2.8.0 lib/more/facets/instantiable.rb
facets-2.7.0 lib/more/facets/instantiable.rb
facets-2.6.0 lib/more/facets/instantiable.rb
facets-2.4.0 lib/facets/instantiable.rb
facets-2.4.1 lib/facets/instantiable.rb
facets-2.4.4 lib/more/facets/instantiable.rb
facets-2.4.3 lib/more/facets/instantiable.rb
facets-2.4.2 lib/more/facets/instantiable.rb
facets-2.5.0 lib/more/facets/instantiable.rb
facets-2.4.5 lib/more/facets/instantiable.rb
facets-2.5.1 lib/more/facets/instantiable.rb
facets-2.5.2 lib/more/facets/instantiable.rb
mack-facets-0.8.2 lib/gems/facets-2.4.5/lib/more/facets/instantiable.rb