ERB预处理ruby代码

Posted tim_sheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ERB预处理ruby代码相关的知识,希望对你有一定的参考价值。

cucumber.yml 文件可以用erb预处理,这样允许你在cucumber.yml文件中使用ruby代码生成值。所以如果你有几个配置要用相同值时,你可以这样写

# config/cucumber.yml
##YAML Template
---
<% common = "--tags [email protected] --strict" %>
default: <%= common %> features  
html_report: <%= common %> --format html --out=features_report.html features  

  

以上是关于ERB预处理ruby代码的主要内容,如果未能解决你的问题,请参考以下文章

如何在 html.erb 文件中运行多行 Ruby

如何改进 Ruby on Rails 视图中的代码

JSP,能不能像Ruby/Rails/Erb中的yield, layout, content_for一样工作

ruby 我感兴趣的库中的代码片段

哪种 Java HTML 模板技术的工作方式最接近 Ruby (erb/haml)?

从 ruby​​ on rails 中删除 new.haml/new.erb?