forked from toland/patron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
patron.gemspec
27 lines (22 loc) · 972 Bytes
/
patron.gemspec
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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/patron/version", __FILE__)
Gem::Specification.new do |s|
s.name = "patron"
s.version = Patron::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Phillip Toland"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/toland/patron"
s.summary = "Patron HTTP Client"
s.description = "Ruby HTTP client library based on libcurl"
s.required_rubygems_version = ">= 1.2.0"
s.rubyforge_project = "patron"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rake-compiler", ">= 0.7.5"
s.add_development_dependency "rspec", ">= 2.3.0"
s.add_development_dependency "simplecov", ">= 0.10.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_paths = ["lib", "ext"]
s.extensions = ["ext/patron/extconf.rb"]
end