mod_ruby + ShootingStar

vender/plugin/meteor_strike配下のファイルで「Meteorが未定義」とのエラー。
とりあえずApplicationControllerのフィルタで明示的に宣言。

class ApplicationController < ActionController::Base
  ...
  before_filter :init_app

  def init_app
    Meteor # for mod_ruby
  end