Tagged Questions
The method-missing tag has no wiki summary.
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 ...
8
votes
16answers
706 views
Are there equivalents to Ruby's method_missing in other languages?
In Ruby, objects have a handy method called method_missing which allows one to handle method calls for methods that have not even been (explicitly) defined:
Invoked by Ruby when obj is sent a ...
6
votes
1answer
2k views
Method-missing difficulties in C# 4.0: dynamic vs RealProxy
Does anyone know of a way to intercept dynamic method calls (particularly those that are going to raise RuntimeBinderExceptions) with a RealProxy? I was hoping to catch the exception and implement ...
5
votes
2answers
91 views
Objective C and magic methods in class
Does objective-c offer a way to intercept calls to class method that does not exist?
4
votes
1answer
49 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
4answers
393 views
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 ...
4
votes
1answer
294 views
How can I intercept a method call in Boo?
Ruby has method_missing , Python has getattr. Does Boo offer something I can use to intercept method calls?
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
194 views
Objective-C forwardInvocation:
I often do something like:
CoolViewController *coolViewController = [[CoolViewController alloc] init];
[self.navigationController pushViewController:coolViewController animated:YES];
...
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
1answer
142 views
custom method_missing ignored if instance is defined via an ActiveRecord association
I have submissions that might be in various states and wrote a method_missing override that allows me to check their state with calls like
submission.draft?
submission.published?
This works ...
2
votes
3answers
87 views
Does powershell have a method_missing()?
I have been playing around with the dynamic abilities of powershell and I was wondering something
Is there is anything in powershell analogous to Ruby's method_missing() where you can set up a 'catch ...
2
votes
4answers
370 views
Erlang and method_missing
I come from a Java and Ruby background and I was wondering if there is any equivalent of "method_missing" in Erlang. I have looked at the documentation and the closest I can see is the use of erl_eval ...
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
2answers
70 views
sp R package and missing values
I am trying to create a bubble plot in R using the sp package. My data has a lot of missing values ("N/A") and the bubble plot does not seem to like it.
library(sp)
X<-runif(100, min=0, max=1000)
...
1
vote
1answer
60 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
3answers
196 views
Rails: method_missing is not called on model when using associations
My current code:
class Product < ActiveRecord::Base
belongs_to :category
end
class Category < ActiveRecord::Base
def method_missing name
true
end
end
...
1
vote
1answer
540 views
Farseer physics…hello world…?
I have no idea why but I cant seem to find out why this isn't working...
I'm trying to make something really simple, like something that just falls off the screen.
It seems like with the latest ...
1
vote
2answers
495 views
Rails: “Stack level too deep” error when calling “id” primary key method
This is a repost on another issue, better isolated this time.
In my environment.rb file I changed this line:
config.time_zone = 'UTC'
to this line:
config.active_record.default_timezone = :utc
...
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
2answers
49 views
Using method missing in Rails
I have a model with several date attributes. I'd like to be able to set and get the values as strings. I over-rode one of the methods (bill_date) like so:
def bill_date_human
date = ...
0
votes
3answers
84 views
android camera (froyo) doesnt include static method open()
I must be the first to face this problem because I can't find even a single thread about it.
Today I wanted to start on the camera aspect of my application needs.
I read up some documentation
my ...
0
votes
2answers
115 views
Ruby’s “method_missing” in Python [closed]
Possible Duplicate:
Python equivalent of Ruby's 'method_missing'
Is there any technique available in Python for intercepting messages (method calls) like the method_missing ...
0
votes
0answers
471 views
Ruby 1.9.2 vs Rails 3.1 Eager Loading of Polymorphic Associations - Error if method_missing Overridden?
I recently ran into an interesting error while overriding method_missing in some polymorphic classes in Rails 3.1.0.rc4 and I want to know whether this is a bug that needs addressing in ...
0
votes
3answers
98 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
1answer
220 views
Ruby on Rails Plugin: acts_as_taggable_on_steroids. Keep getting “method_missing” undefined local variable or method 'acts_as_taggble_on'
I am trying to implement a tagging system for my rails app. I employed the popular plugin acts_as_taggable_on_steroids, and followed the instruction on how to install it. I then included ...
0
votes
2answers
187 views
Multiple arguments for method_missing
I have the following method_missing code implemented in a model:
# class Thought
def self.method_missing(method_id, *arguments, &block)
if $CLIENT.respond_to?(method_id)
...
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
0answers
59 views
Missing std::find_if_not
I don't have this function in my VS2005 which can be found on MSDN.
How should i know when the function was released and can i have it my edition of VS2005?
0
votes
2answers
239 views
Get SEO friendly URLS with Rails without method_missing?
Currently we are using method_missing to catch for calls to SEO friendly actions in our controllers rather than creating actions for every conceivable value for a variable. What we want are URLS like ...
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
0answers
142 views
SubSonic missing stored procedures in StoredProcedures.cs when generated with SubCommander sonic.exe
We have been using SubSonic to generate our DAL with a lot of success on VS2005 and SubSonic Tools 2.0.3.
SubSonic Tools do not work on VS2008 (as far as we can work out) so we have tried to use ...
0
votes
1answer
556 views
Could not find System.Threading after deploying in mscorlib.dll in Microsoft Compact Framework 2.0/3.5
i am facing a problem in windows mobile 6. i have developed an app and i have used Timer class that is present in System.Threading namespace present in mscorlib.dll assembly. the problem is that when ...
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
...
-1
votes
1answer
395 views
Global “method_missing” in PHP? [closed]
Possible Duplicate:
Magic functions __call() for functions?
I can implement __call() to provide method_missing behavior in PHP classes. Is there some way to provide the same functionality ...