module Rails::ActionMethods

def method_missing(meth, *args, &block)

TODO: Remove once this is fully in place
def method_missing(meth, *args, &block)
  STDERR.puts "Calling #{meth} with #{args.inspect} with #{block}"
  @generator.send(meth, *args, &block)
end