Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何访问助手middleman console?如果对象路径不同,则 3.x 和 4.x 的答案都会有所帮助。
middleman console
我找不到任何关于此的文档,因此解决了以下工作:
这是我的帮手
module PageHelpers def thing "THING!" end end
在包含它的类的实例上调用辅助方法:
$ bundle exec middleman console irb...> (class Thing; include PageHelpers; end).new.thing => "THING!"