-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpinch.gemspec
More file actions
31 lines (24 loc) · 1.07 KB
/
pinch.gemspec
File metadata and controls
31 lines (24 loc) · 1.07 KB
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
30
31
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'pinch'
Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.8.7'
s.require_paths << 'lib'
s.name = "pinch"
s.version = Pinch::VERSION
s.summary = "Retrieve a file from inside a zip file, over the network!"
s.description = "Pinch makes it possible to download a specific file from within a ZIP file over HTTP 1.1."
s.email = "peter@c7.se"
s.homepage = "http://peterhellberg.github.com/pinch/"
s.authors = ["Peter Hellberg", "Edward Patel"]
s.license = "MIT-LICENSE"
s.has_rdoc = true
s.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
s.extra_rdoc_files = ['README.rdoc', 'MIT-LICENSE']
s.test_file = 'spec/pinch_spec.rb'
s.files = Dir.glob("lib/**/*") +
%w(MIT-LICENSE README.rdoc Rakefile .gemtest)
s.add_development_dependency 'minitest', '~> 5.2'
s.add_development_dependency 'webmock', '~> 1.16'
s.add_development_dependency 'vcr', '~> 2.8'
end