rtomayko / rack-contrib

Moved to http://github.com/rack/rack-contrib/

This URL has Read+Write access

jeremy (author)
Thu Dec 18 17:07:21 -0800 2008
commit  af0d3d137bc39f13221bf16130628b007f007cd2
tree    6e65ecb7d7628d3adfd771505a6a40ffaf9075a8
parent  5aeb545d6a91ec37bff569ce41a578bfb94ed86f
rack-contrib / rack-contrib.gemspec
100644 55 lines (47 sloc) 1.634 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Gem::Specification.new do |s|
  s.specification_version = 2 if s.respond_to? :specification_version=
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
 
  s.name = 'rack-contrib'
  s.version = '0.4.0'
  s.date = '2008-12-09'
 
  s.description = "Contributed Rack Middleware and Utilities"
  s.summary = "Contributed Rack Middleware and Utilities"
 
  s.authors = ["rack-devel"]
  s.email = "rack-devel@googlegroups.com"
 
  # = MANIFEST =
  s.files = %w[
COPYING
README.rdoc
Rakefile
lib/rack/contrib.rb
lib/rack/etag.rb
lib/rack/jsonp.rb
lib/rack/lighttpd_script_name_fix.rb
lib/rack/locale.rb
lib/rack/mailexceptions.rb
lib/rack/post_body_content_type_parser.rb
lib/rack/profiler.rb
lib/rack/sendfile.rb
lib/rack/time_zone.rb
rack-contrib.gemspec
test/mail_settings.rb
test/spec_rack_contrib.rb
test/spec_rack_etag.rb
test/spec_rack_jsonp.rb
test/spec_rack_lighttpd_script_name_fix.rb
test/spec_rack_mailexceptions.rb
test/spec_rack_post_body_content_type_parser.rb
test/spec_rack_sendfile.rb
]
  # = MANIFEST =
 
  s.test_files = s.files.select {|path| path =~ /^test\/spec_.*\.rb/}
 
  s.extra_rdoc_files = %w[README.rdoc COPYING]
  s.add_dependency 'rack', '~> 0.4'
  s.add_dependency 'tmail', '>= 1.2'
  s.add_dependency 'json', '>= 1.1'
 
  s.has_rdoc = true
  s.homepage = "http://github.com/rtomayko/rack-contrib/"
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "rack-contrib", "--main", "README"]
  s.require_paths = %w[lib]
  s.rubygems_version = '1.1.1'
end