Last active
December 11, 2015 23:58
-
-
Save pdxmph/4679961 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/ruby | |
| require "rubygems" | |
| require "liquid" | |
| template = <<TEMPLATE | |
| {% assign version = '4.0.2' %} | |
| {% if version contains '3.0' %} | |
| Version is {{ version }} and it has a 3.0 in it | |
| {% else %} | |
| Version is {{ version }} and it has no 3.0 in it | |
| {% endif %} | |
| TEMPLATE | |
| puts Liquid::Template.parse(template).render |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment