我使用rubymine 7.1.4,我发现无法创建新的实时模板。我尝试使用以下步骤创建实时模板
1.转到首选项 - >编辑 - >实时模板
2.我选择"用户"分组并点击" +"右上角的图标,然后选择" 1。实时模板"
我填写了"缩写"带有mmfd
和"字段的字段,带有#34; method_missing用于装饰器",然后是"模板文本"字段
def method_missing?(method_name, *args, &block)
@tweet.send(method_name, *args, &block)
end
def respond_to_missing?(method_name, include_private=false)
@tweet.respond_to?(method_name, include_private=false) || super
end