Tagged Questions

11
votes
5answers
404 views

What prevents a statically typed language from having something like Ruby's method_missing?

I don't have much experience with statically typed languages (currently learning Scala and loving it!) but one thing I've noticed is that they don't ever seem to have anything like Ruby's ...
4
votes
1answer
50 views

Ruby: why does puts call to_ary?

I'm learning metaprogramming in Ruby and am just trying out defining missing methods via method_missing and define_method. I'm getting some unexpected behaviour and am wondering if anyone can explain ...
4
votes
1answer
96 views

Doesn't Lua have something comparable to Ruby's method_missing?

I seem to recall Lua has something similar to Ruby's method_missing. Or am I remembering incorrectly? Thanks in advance
4
votes
2answers
908 views

Ruby, get hours, seconds and time from Date.day_fraction_to_time

I've found this method here. start = DateTime.now sleep 15 stop = DateTime.now #minutes puts ((stop-start) * 24 * 60).to_i hours,minutes,seconds,frac = ...
4
votes
1answer
224 views

Is there a “method_missing” for rake tasks?

If my Rakefile does not find a task with a particular name, I'd like rake to instead create a new task by that name according to certain rules, if a file with the missing task name exists. But if it ...
3
votes
3answers
107 views

Does Ruby have a method_missing equivalent for undefined instance variables?

When I invoke a method that doesn't exist, method_missing will tell me the name of the method. When I attempt to access a variable that hasn't been set, the value is simply nil. I'm attempting to ...
3
votes
2answers
172 views

Difficulty aliasing `is_x?` to `has_role? x`

Each user has many roles; to find out whether a user has the "admin" role, we can use the has_role? method: some_user.has_role?('admin') Which is defined like this: def has_role?(role_in_question) ...
2
votes
1answer
209 views

How to compose modules containing method_missing in ruby

I have a couple of modules that extend method missing: module SaysHello def respond_to?(method) super.respond_to?(method) || !!(method.to_s =~ /^hello/) end def ...
2
votes
7answers
1k views

method_missing in “Programming Ruby” over my head

method_missing *obj.method_missing( symbol h , *args i ) → other_obj* Invoked by Ruby when obj is sent a message it cannot handle. symbol is the symbol for the method called, and args are ...
2
votes
1answer
973 views

Default Ruby accessor method?

Is there a default method or class accessor that I can add to a Ruby class that get called if a accessor (Ruby like property) doesn't exit? I can then write some custom code to reply from like a array ...
1
vote
1answer
61 views

When might a dispatch table be as good as method_missing in Ruby?

Are there any situations where a dispatch table, implemented as a hash of lambdas, might be as good, if not better, than over-riding Ruby's method_missing? I'm asking because I used this technique ...
1
vote
1answer
244 views

How to alternatively access accessors as array indices?

I have a class Foo which has several methods like button_0_0, button_0_1, button_0_2, button_1_0, etc. I would like to be able to access these alternatively via the following syntax: ...
0
votes
3answers
99 views

method_missing and association_proxy in rails

So, here's my problem. I currently am building a simple authentication system for a rails site. I have 3 classes for this: Person, Session, and Role. In my Person model I have defined method_missing ...
0
votes
3answers
207 views

Ruby blocks with method_missing

Note, this is a follow up to my question here. I'm trying to parse the following Tcl code: foo bar { biz buzz } In Tcl, foo is the method name, bar is the argument, and the rest is a "block" to ...
0
votes
2answers
112 views

Use Ruby to parse a Tcl DSL

I would like to be able to parse some Tcl code where arguments are not surrounded by strings. Consider this tcl code: proc foo {name} { puts "Foo --> $name" } foo bar For those ...
0
votes
1answer
143 views

Difference between calling method_missing in Ruby with and without parentheses

Is there any possibility to establish in method_missing declaration in Ruby whether a given missing_method was called (without any arguments) using parentheses notation, ie: foo.non_existing_method() ...
0
votes
2answers
96 views

Ruby: what is the best way to find out method type in method_missing?

At the moment I've got this code: name, type = meth.to_s.match(/^(.+?)([=?]?)$/)[1..-1] But it doesn't seem to be the best solution =\ Any ideas how to make it better? Thanks.
0
votes
1answer
520 views

Override same Class method in Ruby with Multiple Modules, with need to call super. Do I use Method Alias, or some other clever trick?

Here's the situation: I have a User model, and two modules for authentication: Oauth and Openid. Both of them override ActiveRecord#save, and have a fair share of implementation logic. Given that I ...
0
votes
1answer
690 views

question regarding define_method and method_missing

How can I make this code work? class Meta @array = [:a,:b] def self.method_missing(name, *args, &block) if @array.include? name ...