Rails has these cool properties that seem to be actually methods. For example:
class SomeController < ApplicationController
before_filter :authenticate!
end
What are these actually called and how would you create your own? For example, in one of my models I want to be able to have a dynamic property that selects an internal method for processing some results:
class MyModel < ActiveRecord::Base
active_method :some_class_method
end
How would I set this up so I can set active_method like that and be able to access the active_method symbol as an instance var?
Edit for elaboration:
So give this starter below, I need to figure out how to define "selected_method" so that it defines a accessor or instance variable so "called_selected_method" calls "method_b".
class MyClass
selected_method :method_b
def call_selected_method
end
private
def method_a
puts 'method_a'
end
def method_b
puts 'method_b'
end
end
c = MyClass.new
c.call_selected_method # should put 'method_b'
before_filter? – Ray Toal Sep 11 '11 at 5:15before_filteris a class method available toSomeControllerthrough inheritance. Whenbefore_filteris called (line 3 in your code), it maintains the list of arguments passed to it in a class variable, so that it can be used later by other methods of that class. These methods can be instance methods or class methods. It goes without saying that the 'maintains the list of arguments' part is done in a way that makes design sense. – Swanand Sep 11 '11 at 8:43