shuber-proxy 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/CHANGELOG +3 -0
  2. data/lib/proxy.rb +11 -0
  3. metadata +2 -2
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ 2008-12-08 - Sean Huber (shuber@huberry.com)
2
+ * Fix bug - lib/proxy.rb was not included in gemspec
3
+
1
4
  2008-11-14 - Sean Huber (shuber@huberry.com)
2
5
  * Fix bug - "redirect_to some_path" now uses a forwarded host if it exists
3
6
  * Gemify
data/lib/proxy.rb ADDED
@@ -0,0 +1,11 @@
1
+ require 'huberry/action_controller/abstract_request'
2
+ require 'huberry/action_controller/base'
3
+ require 'huberry/action_controller/named_route_collection'
4
+ require 'huberry/action_controller/url_rewriter'
5
+ require 'huberry/action_view/url_helper'
6
+
7
+ ActionController::AbstractRequest.send :include, Huberry::ActionController::AbstractRequest
8
+ ActionController::Base.send :include, Huberry::ActionController::Base
9
+ ActionController::Routing::RouteSet::NamedRouteCollection.send :include, Huberry::ActionController::NamedRouteCollection
10
+ ActionController::UrlRewriter.send :include, Huberry::ActionController::UrlRewriter
11
+ ActionView::Base.send :include, Huberry::ActionView::UrlHelper
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shuber-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Huber
@@ -29,7 +29,7 @@ files:
29
29
  - lib/huberry/action_controller/named_route_collection.rb
30
30
  - lib/huberry/action_controller/url_rewriter.rb
31
31
  - lib/huberry/action_view/url_helper.rb
32
- - lib/huberry/proxy.rb
32
+ - lib/proxy.rb
33
33
  - MIT-LICENSE
34
34
  - Rakefile
35
35
  - README.markdown