Meadowのruby-modeでyasnippetが利かないのは

Google Code Archive - Long-term storage for Google Code Project Hosting.」に書かれたとおりに設定をしても、ネットインストールしたmeadow上のruby-modeではyasnippetが機能しないことがある。これは、hippie-expandという略語展開機能に操作を奪われることが原因。ネットインストールによってhippie-expandが自動的にアクティブになっているのですよね。
hippie-expandは(→Emacs の略語展開のメモ — ありえるえりあ)で解説されているように、いろいろな略語展開機能を統一してくれるものです。なので、略語展開機能リスト hippie-expand-try-functions-list にyasnippet展開を追加すればこの問題は解決します。
.emacsに以下を追記する。

(setq hippie-expand-try-functions-list
      (cons 'yas/hippie-try-expand  hippie-expand-try-functions-list))

これはhippie-expand展開リストのあたまにyasnippet展開を追加する例ですけど、他の展開を優先したいときはリストの順番を変えるべき。