forked from typhoeus/ethon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathethon.gemspec
More file actions
29 lines (24 loc) · 815 Bytes
/
Copy pathethon.gemspec
File metadata and controls
29 lines (24 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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 = 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