File: cookiejar.gemspec

package info (click to toggle)
ruby-cookiejar 0.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 1,181; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 1,081 bytes parent folder | download
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
# -*- 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.license     = 'BSD-2-Clause'
  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.9.20'
  s.add_development_dependency 'bundler', '>= 0.9.3'
end