File: httpclient.gemspec

package info (click to toggle)
ruby-httpclient 2.8.3%2Bgit20211122.4658227-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,908 kB
  • sloc: ruby: 9,963; makefile: 10; sh: 2
file content (14 lines) | stat: -rw-r--r-- 475 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require './lib/httpclient/version'

Gem::Specification.new { |s|
  s.name = 'httpclient'
  s.version = HTTPClient::VERSION
  s.author = 'Hiroshi Nakamura'
  s.email = 'nahi@ruby-lang.org'
  s.executables = ['httpclient']
  s.homepage = 'https://github.com/nahi/httpclient'
  s.summary = 'gives something like the functionality of libwww-perl (LWP) in Ruby'
  s.require_paths = ['lib']
  s.files = Dir.glob('{bin,lib,sample,test}/**/*') + ['README.md']
  s.license = 'ruby'
}