summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/lib/newgem/version.rb.tt
blob: fe9b5fc558d022b03c9783ec87667b27ff3e4fe4 (plain)
1
2
3
4
5
6
7
<%- config[:constant_array].each_with_index do |c,i| -%>
<%= '  '*i %>module <%= c %>
<%- end -%>
<%= '  '*config[:constant_array].size %>VERSION = "0.0.1"
<%- (config[:constant_array].size-1).downto(0) do |i| -%>
<%= '  '*i %>end
<%- end -%>