Skip to content

Commit

Permalink
fix(ruby): set gem summary based on whether it's a service
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Apr 9, 2024
1 parent 8163634 commit a0cbd9f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion templates/api/clients/ruby/client.gemspec.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ require_relative 'lib/{{ .Config.Name }}_client/version'
Gem::Specification.new do |spec|
spec.name = "{{ .Config.Name }}_client"
spec.version = {{ title .Config.Name }}Client::VERSION
spec.summary = "ruby client for {{ .Config.Name }} service"
{{- if stencil.Arg "service" }}
spec.summary = "gRPC client for {{ .Config.Name }} service"
{{- else }}
spec.summary = "gRPC types for {{ .Config.Name }}"
{{- end }}
spec.authors = ["{{ stencil.Arg "reportingTeam" }}"]
spec.homepage = "https://github.com/getoutreach/{{ .Config.Name }}"
spec.metadata["homepage_uri"] = spec.homepage
Expand Down

0 comments on commit a0cbd9f

Please sign in to comment.