Sha256: c4f81d15d42cb60a4209c14f3580b6005c88517c607dc96d159dbb8caec1b0d1

Contents?: true

Size: 985 Bytes

Versions: 4

Compression:

Stored size: 985 Bytes

Contents

name: <%= @name %>
summary: <%= yaml_escape @summary %>
description: <%= yaml_escape @description %>
<%- if @license -%>
license: <%= @license %>
<%- end -%>
<%- if @authors.length > 1 -%>
authors:
<%-   @authors.each do |name| -%>
 - <%= name %>
<%-   end -%>
<%- else -%>
authors: <%= @authors.first %>
<%- end -%>
<%- if @email -%>
email: <%= @email %>
<%- end -%>
homepage: <%= @homepage %>
<%= includes :gemspec, '' -%>
<%- unless @dependencies.empty? -%>

dependencies:
<%-   @dependencies.each do |name,version| -%>
  <%= name %>: <%= version %>
<%-   end -%>
<%- end -%>

<%- if bundler? -%>
development_dependencies:
  bundler: <%= @development_dependencies['bundler'] %>
  <%- if yard? -%>
  yard: <%= @development_dependencies['yard'] %>
  <%- end -%>
<%- else -%>
<%-   unless @development_dependencies.empty? -%>
development_dependencies:
<%-     @development_dependencies.each do |name,version| -%>
  <%= name %>: <%= version %>
<%-     end -%>
<%-   end -%>
<%- end -%>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ore-0.9.3 data/ore/templates/gemspec_yml/gemspec.yml.erb
ore-0.9.2 data/ore/templates/gemspec_yml/gemspec.yml.erb
ore-0.9.1 data/ore/templates/gemspec_yml/gemspec.yml.erb
ore-0.9.0 data/ore/templates/gemspec_yml/gemspec.yml.erb