summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem
diff options
context:
space:
mode:
authorPeter Marsh <pete.d.marsh@gmail.com>2014-12-23 17:19:11 +0000
committerPeter Marsh <pete.d.marsh@gmail.com>2014-12-27 13:45:05 +0000
commit99e7d666f9f61eb4e643ff8d4df9f7aba1c5c30f (patch)
treebf24f7768d0597700e035014e8f34cbc71144682 /lib/bundler/templates/newgem
parent17919e790cd8f6fb369d6afc81f0afec6fb5ad8b (diff)
downloadbundler-99e7d666f9f61eb4e643ff8d4df9f7aba1c5c30f.tar.gz
Change the initial version of new gems to 0.1.0
Diffstat (limited to 'lib/bundler/templates/newgem')
-rw-r--r--lib/bundler/templates/newgem/lib/newgem/version.rb.tt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/templates/newgem/lib/newgem/version.rb.tt b/lib/bundler/templates/newgem/lib/newgem/version.rb.tt
index fe9b5fc558..5874085d61 100644
--- a/lib/bundler/templates/newgem/lib/newgem/version.rb.tt
+++ b/lib/bundler/templates/newgem/lib/newgem/version.rb.tt
@@ -1,7 +1,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 %>VERSION = "0.1.0"
<%- (config[:constant_array].size-1).downto(0) do |i| -%>
<%= ' '*i %>end
<%- end -%>