Sha256: a7a98b40e61a904bc669acb8c1d5d7da737a70884cf52c5eea33e5cd9fcd6914

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'plaid/version'

Gem::Specification.new do |spec|
  spec.name          = 'plaid'
  spec.version       = Plaid::VERSION
  spec.authors       = ['Edmund Loo']
  spec.email         = ['eloo@plaid.com']

  spec.summary       = 'Ruby bindings for Plaid'
  spec.description   = 'Ruby gem wrapper for the Plaid API. Read more at the ' \
                       'homepage, the wiki, or in the Plaid documentation.'
  spec.homepage      = 'https://plaid.com/'
  spec.license       = 'MIT'

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = "https://rubygems.org"
  else
    raise 'RubyGems 2.0 or newer is required to protect against ' \
      'public gem pushes.'
  end

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test/|\.gitignore|\.travis)})
  end

  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 2.0.0'

  spec.add_development_dependency 'bundler', '~> 1.7'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'sdoc', '~> 0.4.1'
  spec.add_development_dependency 'minitest', '~> 5.8'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
plaid-4.0.0 plaid.gemspec