Sha256: 182170ff6ee4c68992baca0a62356a51ce0f130092ce00ee4e9d03ea36b1dad5

Contents?: true

Size: 1.52 KB

Versions: 4

Compression:

Stored size: 1.52 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "imasei"
  spec.version       = Imasei::VERSION
  spec.authors       = ["Alexandre Soares feat Leandro Telles"]
  spec.email         = ["alexandre.soares@ima.sp.gov.br"]

  spec.summary       = "Integração com a API do SEI."
  spec.description   = "Expõe, através de métodos ruby, as funcionalidades da API do SEI."
  spec.homepage      = "https://github.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|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", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"

  spec.add_runtime_dependency 'gem_config', '~> 0.3.1'
  spec.add_runtime_dependency 'savon', '~> 2.12.0'
  spec.add_runtime_dependency 'valuable', '~> 0.9.14'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
imasei-0.2.13 imasei.gemspec
imasei-0.2.12 imasei.gemspec
imasei-0.2.11 imasei.gemspec
imasei-0.2.10 imasei.gemspec