Paramix

T

Trans

I've just finished restoring paramix.rb to Facets library. You can
expect it in 2.4.2 which I will release soon. (Note that the version
included in 2.4.1 is a work in progress and should not be used).

Just to let people know how it works now, as opposed to the old
version which overrode #include itself, the new version uses a
delegating module. So it is much more robust.

Here is a simple example:

require 'facets/paramix'

module MyMixin
include Paramix

def hello
puts "Hello from #{mixin_params[MyMixin][:name]}!"
end
end

class MyClass
include Mixin[:name => 'Ruby']
end

m = MyClass.new
m.hello -> 'Hello from Ruby!'

Notice the use of #[]. Capitalized methods have namespace issues, so
the #[] method was used instead.

T.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top