Sha256: 0b03881e4599acadc0ecbb95f33ae239c7320002544619c1edd28b62f580adca
Contents?: true
Size: 746 Bytes
Versions: 6478
Compression:
Stored size: 746 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 = "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
Version data entries
6,478 entries across 6,476 versions & 21 rubygems