Sha256: bb8a5c46ff261a3d490d9a20ce49c375028bad78ac0558b3724c95f7d29d99b6

Contents?: true

Size: 1.55 KB

Versions: 6

Compression:

Stored size: 1.55 KB

Contents

# -*- encoding: utf-8 -*-

=begin
{{> api_info}}
=end

$:.push File.expand_path("../lib", __FILE__)
require "{{gemName}}/version"

Gem::Specification.new do |s|
  s.name        = "{{gemName}}{{^gemName}}{{{appName}}}{{/gemName}}"
  s.version     = {{moduleName}}::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["{{gemAuthor}}{{^gemAuthor}}OpenAPI-Generator{{/gemAuthor}}"]
  s.email       = ["{{gemAuthorEmail}}{{^gemAuthorEmail}}{{infoEmail}}{{/gemAuthorEmail}}"]
  s.homepage    = "{{gemHomepage}}{{^gemHomepage}}https://openapi-generator.tech{{/gemHomepage}}"
  s.summary     = "{{gemSummary}}{{^gemSummary}}{{{appName}}} Ruby Gem{{/gemSummary}}"
  s.description = "{{gemDescription}}{{^gemDescription}}{{{appDescription}}}{{^appDescription}}{{{appName}}} Ruby Gem{{/appDescription}}{{/gemDescription}}"
  s.license     = "{{{gemLicense}}}{{^gemLicense}}Unlicense{{/gemLicense}}"
  s.required_ruby_version = "{{{gemRequiredRubyVersion}}}{{^gemRequiredRubyVersion}}>= 2.7{{/gemRequiredRubyVersion}}"
  s.metadata = {}

  {{#isFaraday}}
  s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 3.0'
  s.add_runtime_dependency 'faraday-multipart'
  {{/isFaraday}}
  {{^isFaraday}}
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
  {{/isFaraday}}
  s.add_runtime_dependency 'ox', '~> 2.4'
  s.add_runtime_dependency 'marcel'

  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'

  s.files         = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
  s.test_files    = `find spec/*`.split("\n")
  s.executables   = []
  s.require_paths = ["lib"]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bandwidth-sdk-13.1.4 custom_templates/gemspec.mustache
bandwidth-sdk-13.1.3 custom_templates/gemspec.mustache
bandwidth-sdk-13.1.2 custom_templates/gemspec.mustache
bandwidth-sdk-13.1.1 custom_templates/gemspec.mustache
bandwidth-sdk-13.1.0 custom_templates/gemspec.mustache
bandwidth-sdk-13.0.0 custom_templates/gemspec.mustache