Sha256: a09e0b173906b9227c12ea7285925a3ebe3252f330ece0dc0cc1cb7579359c12

Contents?: true

Size: 899 Bytes

Versions: 1

Compression:

Stored size: 899 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'ethon/version'

Gem::Specification.new do |s|
  s.name         = "scnr-ethon"
  s.version      = Ethon::VERSION
  s.platform     = Gem::Platform::RUBY
  s.authors      = ["Tasos Laskos", "Hans Hasselberg"]
  s.email        = ["tasos.laskos@gmail.com", "me@hans.io"]
  s.homepage     = "https://github.com/typhoeus/ethon/tree/thread-safe-easy-handle-cleanup"
  s.summary      = "Libcurl wrapper."
  s.description  = "Very lightweight libcurl wrapper."

  s.required_rubygems_version = ">= 1.3.6"
  s.license = 'MIT'

  s.add_dependency('ffi', ['>= 1.15.0'])

  s.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |file|
      file.start_with?(*%w[. Gemfile Guardfile Rakefile profile spec])
    end
  end
  s.require_path = 'lib'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
scnr-ethon-0.15.0 ethon.gemspec