summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/lib/newgem.rb.tt
blob: 457172b403c1fa191dd5e5436bd7c63e156979c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "<%= config[:namespaced_path] %>/version"
<%- if config[:ext] -%>
require "<%= config[:namespaced_path] %>/<%= config[:underscored_name] %>"
<%- end -%>

<%- config[:constant_array].each_with_index do |c, i| -%>
<%= "  " * i %>module <%= c %>
<%- end -%>
<%- if config[:error_class] -%>
<%= "  " * config[:constant_array].size %>class Error < <%= config[:error_class] %>
<%= "  " * config[:constant_array].size %>  # Base class for your errors
<%= "  " * config[:constant_array].size %>end
<%- end -%>
<%= "  " * config[:constant_array].size %># Your code goes here...
<%- (config[:constant_array].size-1).downto(0) do |i| -%>
<%= "  " * i %>end
<%- end -%>