# File lib/merb-cache/cache-action.rb, line 30
  def cache_actions(*actions)
    if actions.any? && !Merb::Cache.cached_actions.key?(controller_name)
      before(:cache_action_before)
      after(:cache_action_after)
    end
    actions.each do |action, from_now| 
      _actions = Merb::Cache.cached_actions[controller_name] ||= {}
      _actions[action] = from_now
    end
    true
  end