espago/gus_bir1

View on GitHub
gus_bir1.gemspec

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gus_bir1/version'

Gem::Specification.new do |spec|
  spec.name          = 'gus_bir1'
  spec.version       = GusBir1::VERSION
  spec.authors       = ['Waclaw Luczak']
  spec.email         = ['waclaw@luczak.it']

  spec.summary       = 'Rails GUS API library based on official REGON SOAP api.'
  spec.homepage      = 'https://github.com/espago/gus_bir1'
  spec.license       = 'MIT'

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'minitest'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rubocop'
  spec.add_development_dependency 'simplecov'

  spec.add_dependency 'savon', '~> 2.14'
  spec.add_dependency 'savon-multipart'
end