forked from dwaite/cookiejar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiejar.gemspec
27 lines (23 loc) · 1.03 KB
/
cookiejar.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
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cookiejar/version'
Gem::Specification.new do |s|
s.name = 'cookiejar'
s.version = CookieJar::VERSION
s.authors = ['David Waite']
s.email = ['david@alkaline-solutions.com']
s.description = 'Allows for parsing and returning cookies in Ruby HTTP client code'
s.summary = 'Client-side HTTP Cookie library'
s.homepage = 'http://alkaline-solutions.com'
s.date = '2014-02-01'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.test_files = s.files.grep(%r{^(spec)/})
s.rdoc_options = ['--title', 'CookieJar -- Client-side HTTP Cookies']
s.require_paths = ['lib']
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'yard', '~> 0.8', '>= 0.8.7'
s.add_development_dependency 'bundler', '>= 0.9.3'
end