Sha256: 59d8c3d90a68df4611754c80baf4cee4db324dc91bf22a81689551498176ac8f

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

Contents

require_relative 'lib/oso/version'

Gem::Specification.new do |spec|
  spec.name          = 'oso-cloud'
  spec.version       = OsoCloud::VERSION
  spec.authors       = ['Oso Security, Inc.']
  spec.email         = ['support@osohq.com']
  spec.summary       = 'Oso Cloud Ruby client'
  spec.homepage      = 'https://www.osohq.com/'
  spec.license       = 'Apache-2.0'

  spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |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_dependency 'faraday', '~> 2.5.2'
  spec.add_dependency 'faraday-retry', '~> 2.0.0'
  # spec.add_dependency 'faraday-net_http_persistent', '~> 2.0'
  spec.add_dependency 'faraday-typhoeus', '~> 1.0.0'
  #
  spec.add_development_dependency 'minitest', '~> 5.15'
  spec.add_development_dependency 'pry-rescue'
  spec.add_development_dependency 'pry-stack_explorer'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
oso-cloud-1.3.0.dev.4 oso-cloud.gemspec
oso-cloud-1.3.0.dev.3 oso-cloud.gemspec
oso-cloud-1.3.0.dev.2 oso-cloud.gemspec
oso-cloud-1.3.0.dev.1 oso-cloud.gemspec
oso-cloud-1.3.0.dev.0 oso-cloud.gemspec