Module: Transproc::ClassTransformations

Extended by:
Registry
Defined in:
lib/transproc/class.rb

Overview

Transformation functions for Classes

Examples:

require 'transproc/class'

include Transproc::Helper

fn = t(:constructor_inject, Struct)

fn['User', :name, :age]
# => Struct::User

Class Method Summary collapse

Methods included from Registry

[], contain?, fetch, import, register, store

Class Method Details

.constructor_inject(*args, klass) ⇒ Object

Inject given arguments into the constructor of the class

Examples:

Transproct(:constructor_inject, Struct)['User', :name, :age]
# => Struct::User

Parameters:

  • A (*Mixed)

    list of arguments to inject

Returns:

  • (Object)

    An instance of the given klass



31
32
33
# File 'lib/transproc/class.rb', line 31

def self.constructor_inject(*args, klass)
  klass.new(*args)
end

.set_ivars(ivar_hash, klass) ⇒ Object

Set instance variables from the hash argument (key/value pairs) on the object

Examples:

Transproc(:set_ivars, Object)[name: 'Jane', age: 25]
# => #<Object:0x007f411d06a210 @name="Jane", @age=25>

Parameters:

  • (Object)

Returns:

  • (Object)


46
47
48
49
50
51
52
# File 'lib/transproc/class.rb', line 46

def self.set_ivars(ivar_hash, klass)
  object = klass.allocate
  ivar_hash.each do |ivar_name, ivar_value|
    object.instance_variable_set("@#{ivar_name}", ivar_value)
  end
  object
end