Sha256: b7aa75c4bbde2171fc0bbce4455b263d23b33013e55b6baed3e38d7882b185aa

Contents?: true

Size: 779 Bytes

Versions: 3

Compression:

Stored size: 779 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.sort.each do |name,version| -%>
  <%= name %>: <%= version %>
<%-   end -%>
<%- end -%>

<%- unless @development_dependencies.empty? -%>
development_dependencies:
<%-   @development_dependencies.sort.each do |name,version| -%>
  <%= name %>: <%= version %>
<%-   end -%>
<%- end -%>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ore-0.11.0 data/ore/templates/gemspec_yml/gemspec.yml.erb
ore-0.10.0 data/ore/templates/gemspec_yml/gemspec.yml.erb
ore-0.9.4 data/ore/templates/gemspec_yml/gemspec.yml.erb