You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
746 B
26 lines
746 B
# 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 = "ethon"
|
|
s.version = Ethon::VERSION
|
|
s.platform = Gem::Platform::RUBY
|
|
s.authors = ["Hans Hasselberg"]
|
|
s.email = ["me@hans.io"]
|
|
s.homepage = "https://github.com/typhoeus/ethon"
|
|
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 = `git ls-files`.split("\n")
|
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
s.require_path = 'lib'
|
|
end
|
|
|