subdomain-fu 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -0
- data/VERSION.yml +1 -1
- data/lib/subdomain_fu/url_rewriter.rb +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
@@ -14,6 +14,7 @@ begin
|
|
14
14
|
require 'jeweler'
|
15
15
|
Jeweler::Tasks.new do |gemspec|
|
16
16
|
gemspec.name = "subdomain-fu"
|
17
|
+
gemspec.rubyforge_project = 'subdomain-fu'
|
17
18
|
gemspec.summary = "SubdomainFu is a Rails plugin that provides subdomain routing and URL writing helpers."
|
18
19
|
gemspec.email = "michael@intridea.com"
|
19
20
|
gemspec.homepage = "http://github.com/mbleigh/subdomain-fu"
|
data/VERSION.yml
CHANGED
@@ -19,7 +19,7 @@ module ActionController
|
|
19
19
|
if SubdomainFu.needs_rewrite?(options[:subdomain], (options[:host] || @request.host_with_port)) || options[:only_path] == false
|
20
20
|
options[:only_path] = false if SubdomainFu.override_only_path?
|
21
21
|
options[:host] = SubdomainFu.rewrite_host_for_subdomains(options.delete(:subdomain), options[:host] || @request.host_with_port)
|
22
|
-
puts "options[:host]: #{options[:host].inspect}"
|
22
|
+
# puts "options[:host]: #{options[:host].inspect}"
|
23
23
|
else
|
24
24
|
options.delete(:subdomain)
|
25
25
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: subdomain-fu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Bleigh
|
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
version:
|
59
59
|
requirements: []
|
60
60
|
|
61
|
-
rubyforge_project:
|
61
|
+
rubyforge_project: subdomain-fu
|
62
62
|
rubygems_version: 1.3.3
|
63
63
|
signing_key:
|
64
64
|
specification_version: 3
|