public
Description: Allows rails applications to respond to multiple hosts/domains and proxied requests
Homepage:
Clone URL: git://github.com/shuber/proxy.git
proxy / proxy.gemspec
100644 41 lines (35 sloc) 1.17 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
Gem::Specification.new do |s|
  s.name = 'proxy'
  s.version = '1.3.2'
  s.date = '2009-06-05'
  
  s.summary = 'A gem/plugin that allows rails applications to respond to multiple domains and proxied requests'
  s.description = 'A gem/plugin that allows rails applications to respond to multiple domains and proxied requests'
  
  s.author = 'Sean Huber'
  s.email = 'shuber@huberry.com'
  s.homepage = 'http://github.com/shuber/proxy'
  
  s.has_rdoc = false
  s.rdoc_options = ['--line-numbers', '--inline-source', '--main', 'README.markdown']
  
  s.require_paths = ['lib']
  
  s.files = %w(
CHANGELOG
init.rb
lib/proxy/action_controller/abstract_request.rb
lib/proxy/action_controller/base.rb
lib/proxy/action_controller/named_route_collection.rb
lib/proxy/action_controller/url_rewriter.rb
lib/proxy/action_view/url_helper.rb
lib/proxy.rb
MIT-LICENSE
Rakefile
README.markdown
test/init.rb
)
  
  s.test_files = %w(
test/abstract_request_test.rb
test/base_test.rb
test/named_route_collection_test.rb
test/proxy_test.rb
test/url_helper_test.rb
test/url_rewriter_test.rb
)
end