Sha256: b4a87dca521d7d60eb27cc49d149e67029f5847f8e92d6b13f7298f7d7739061

Contents?: true

Size: 1.57 KB

Versions: 36

Compression:

Stored size: 1.57 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     = ["Plaid"]
  s.email       = ["{{gemAuthorEmail}}{{^gemAuthorEmail}}{{infoEmail}}{{/gemAuthorEmail}}"]
  s.homepage    = "https://plaid.com"
  s.summary     = "{{gemSummary}}{{^gemSummary}}{{{appName}}} Ruby Gem{{/gemSummary}}"
  s.description = "Ruby gem wrapper for the Plaid API. Read more at the homepage, the wiki, or in the Plaid documentation."
  s.license     = "{{{gemLicense}}}{{^gemLicense}}MIT{{/gemLicense}}"
  s.required_ruby_version = "{{{gemRequiredRubyVersion}}}{{^gemRequiredRubyVersion}}>= 2.4{{/gemRequiredRubyVersion}}"

  {{#isFaraday}}
  s.add_runtime_dependency 'faraday', '~> 1.0', '>= 1.0.1'
  {{/isFaraday}}
  {{^isFaraday}}
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
  {{/isFaraday}}

  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
  s.add_development_dependency 'bundler', '~> 2.2.9'
  s.add_development_dependency 'dotenv'
  s.add_development_dependency 'minitest', '~> 5.14'
  s.add_development_dependency 'minitest-around', '~> 0.5.0'
  s.add_development_dependency 'rake', '>= 13.0'
  s.add_development_dependency 'rubocop', '~> 0.91.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

36 entries across 36 versions & 1 rubygems

Version Path
plaid-16.0.0 templates/ruby/gemspec.mustache
plaid-15.11.0 templates/ruby/gemspec.mustache
plaid-15.10.0 templates/ruby/gemspec.mustache
plaid-15.9.0 templates/ruby/gemspec.mustache
plaid-15.8.0 templates/ruby/gemspec.mustache
plaid-15.7.0 templates/ruby/gemspec.mustache
plaid-15.6.0 templates/ruby/gemspec.mustache
plaid-15.5.0 templates/ruby/gemspec.mustache
plaid-15.4.0 templates/ruby/gemspec.mustache
plaid-15.3.0 templates/ruby/gemspec.mustache
plaid-15.2.0 templates/ruby/gemspec.mustache
plaid-15.1.0 templates/ruby/gemspec.mustache
plaid-15.0.0 templates/ruby/gemspec.mustache
plaid-14.14.0 templates/ruby/gemspec.mustache
plaid-14.13.0 templates/ruby/gemspec.mustache
plaid-14.12.1 templates/ruby/gemspec.mustache
plaid-14.12.0 templates/ruby/gemspec.mustache
plaid-14.11.1 templates/ruby/gemspec.mustache
plaid-14.11.0 templates/ruby/gemspec.mustache
plaid-14.10.0 templates/ruby/gemspec.mustache